Deep Search Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Deep Search Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server that performs comprehensive web searches by combining Google search with advanced content extraction using Mozilla's Readability algorithm.
This MCP server uses Serper.dev for Google search results.
No installation needed - just configure your MCP client:
{
"mcpServers": {
"deep-search": {
"command": "npx",
"args": ["-y", "@thejusdutt/deep-search-mcp"],
"env": {
"SERPER_API_KEY": "your-serper-api-key-here"
}
}
}
}npm install -g @thejusdutt/deep-search-mcpThen configure:
{
"mcpServers": {
"deep-search": {
"command": "deep-search-mcp",
"env": {
"SERPER_API_KEY": "your-serper-api-key-here"
}
}
}
}deep_searchComprehensive web search with full content extraction.
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
query | string | required | The search query |
num_results | number | 10 | Number of results (1-10) |
max_content_per_page | number | 50000 | Max characters per page (5000-100000) |
search_type | string | "web" | Search type: "web", "news", or "images" |
include_domains | string | - | Comma-separated domains to include |
exclude_domains | string | - | Comma-separated domains to exclude |
Examples:
// Basic web search
deep_search({ query: "React best practices 2025" })
// News search
deep_search({ query: "AI announcements", search_type: "news" })
// Image search - returns image URLs and source pages
deep_search({ query: "cute cats", search_type: "images" })
// Search specific sites only
deep_search({
query: "TypeScript tips",
include_domains: "github.com,dev.to"
})
// Exclude certain sites
deep_search({
query: "web development trends",
exclude_domains: "pinterest.com,facebook.com"
})deep_search_newsOptimized for news article search.
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
query | string | required | The news topic to search |
num_results | number | 10 | Number of articles (1-10) |
max_content_per_page | number | 30000 | Max characters per article |
Example:
deep_search_news({ query: "OpenAI latest updates" })Add to ~/.kiro/settings/mcp.json or claude_desktop_config.json:
{
"mcpServers": {
"deep-search": {
"command": "npx",
"args": ["-y", "deep-search-mcp"],
"env": {
"SERPER_API_KEY": "your-api-key"
}
}
}
}Add to your Continue config:
{
"mcpServers": [
{
"name": "deep-search",
"command": "npx",
"args": ["-y", "deep-search-mcp"],
"env": {
"SERPER_API_KEY": "your-api-key"
}
}
]
}Standard Google search with full page content extraction using Mozilla Readability.
Searches Google News for recent articles. Use search_type: "news" or the dedicated deep_search_news tool.
Searches Google Images and returns:
Note: Image search returns metadata and URLs only - it does not download or display actual images.
MIT
Issues and PRs welcome at GitHub
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.