Install search1api-mcp from npm
Install exact version 0.6.1. No verified executable entrypoint is available, so use the package documentation to launch it.
npm install --save-exact search1api-mcp@0.6.1A Model Context Protocol (MCP) server that provides search and crawl functionality using Search1API
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
Install exact version 0.6.1. No verified executable entrypoint is available, so use the package documentation to launch it.
npm install --save-exact search1api-mcp@0.6.1| Canonical slug | search1api-mcp-server-af324bc5 | Deployment | Hybrid |
|---|---|---|---|
| Canonical package | npm:search1api-mcp | Repository | superagents-lab/search1api-mcp |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 82% |
| Publication | Draft | Official distribution | Not verified |
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| npm | search1api-mcp | 0.6.1 | 19 | Repository |
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| npmsearch1api-mcp | 0.6.1Current | Sep 5, 2026 | 5 toolsSucceeded · 1 resources · 0 prompts | Evidence restricted |
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
No public current-version evidence is available yet.
| Tool | Category | Annotations | Risk |
|---|---|---|---|
crawlExtract the readable title and full text from a public URL supplied by the user or returned by search.Input schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Public HTTP or HTTPS URL to retrieve"
}
},
"required": [
"url"
]
}Output schema{
"type": "object",
"properties": {
"result": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Stable identifier for this result; for web results this is the canonical URL"
},
"title": {
"type": "string",
"description": "Human-readable result title"
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL that clients can cite and users can open"
},
"text": {
"type": "string",
"description": "Result snippet or extracted page text when available"
},
"metadata": {
"type": "object",
"description": "Additional source metadata",
"additionalProperties": true
}
},
"required": [
"id",
"title",
"url"
]
}
},
"required": [
"result"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": true
} | — | Read onlyNon-destructiveOpen world | — |
newsSearch current news when the user asks about recent events, announcements, or coverage. Returns citable article results with title, URL, snippet, and optional extracted text.Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Short, focused news query"
},
"max_results": {
"type": "number",
"minimum": 1,
"maximum": 50,
"description": "Maximum number of articles to return",
"default": 10
},
"search_service": {
"type": "string",
"description": "News search engine to use",
"default": "bing",
"enum": [
"google",
"bing",
"duckduckgo",
"yahoo",
"hackernews"
]
},
"crawl_results": {
"type": "number",
"minimum": 0,
"description": "Number of top articles to retrieve as full pages. Each successful retrieval adds 1 credit to the base 1-credit news request",
"default": 0
},
"include_sites": {
"type": "array",
"items": {
"type": "string"
},
"description": "News domains to include",
"default": []
},
"exclude_sites": {
"type": "array",
"items": {
"type": "string"
},
"description": "News domains to exclude",
"default": []
},
"time_range": {
"type": "string",
"description": "Optional recency window; use day for breaking news",
"enum": [
"day",
"month",
"year"
]
}
},
"required": [
"query"
]
}Output schema{
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Stable identifier for this result; for web results this is the canonical URL"
},
"title": {
"type": "string",
"description": "Human-readable result title"
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL that clients can cite and users can open"
},
"text": {
"type": "string",
"description": "Result snippet or extracted page text when available"
},
"metadata": {
"type": "object",
"description": "Additional source metadata",
"additionalProperties": true
}
},
"required": [
"id",
"title",
"url"
]
}
}
},
"required": [
"results"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": true
} | — | Read onlyNon-destructiveOpen world | — |
searchSearch the live public web when the user needs current information, sources, or research. Returns citable results with id, title, URL, and text. Pass a result URL to crawl to retrieve the full page.Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Short, focused search query"
},
"max_results": {
"type": "number",
"minimum": 1,
"maximum": 50,
"description": "Maximum number of results to return",
"default": 10
},
"search_service": {
"type": "string",
"description": "Search engine to use; choose one only when it matches the user's source intent",
"default": "google",
"enum": [
"google",
"bing",
"duckduckgo",
"yahoo",
"x",
"reddit",
"github",
"youtube",
"arxiv",
"wechat",
"bilibili",
"imdb",
"wikipedia"
]
},
"crawl_results": {
"type": "number",
"minimum": 0,
"description": "Number of top results to retrieve as full pages. Each successful page retrieval adds 1 credit to the base 1-credit search request",
"default": 0
},
"include_sites": {
"type": "array",
"items": {
"type": "string"
},
"description": "Domains to include when the user explicitly scopes the search",
"default": []
},
"exclude_sites": {
"type": "array",
"items": {
"type": "string"
},
"description": "Domains to exclude from the search",
"default": []
},
"time_range": {
"type": "string",
"description": "Optional recency window for time-sensitive searches",
"enum": [
"day",
"month",
"year"
]
}
},
"required": [
"query"
]
}Output schema{
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Stable identifier for this result; for web results this is the canonical URL"
},
"title": {
"type": "string",
"description": "Human-readable result title"
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL that clients can cite and users can open"
},
"text": {
"type": "string",
"description": "Result snippet or extracted page text when available"
},
"metadata": {
"type": "object",
"description": "Additional source metadata",
"additionalProperties": true
}
},
"required": [
"id",
"title",
"url"
]
}
}
},
"required": [
"results"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": true
} | — | Read onlyNon-destructiveOpen world | — |
sitemapDiscover related public links from a page or domain when the user wants to explore a site's structure or available pages.Input schema{
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Public page or domain URL whose links should be discovered"
}
},
"required": [
"url"
]
}Output schema{
"type": "object",
"properties": {
"links": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
},
"required": [
"links"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": true
} | — | Read onlyNon-destructiveOpen world | — |
trendingList currently trending repositories or stories from GitHub or Hacker News when the user asks what is popular now.Input schema{
"type": "object",
"properties": {
"search_service": {
"type": "string",
"description": "Platform whose trending items should be returned",
"enum": [
"github",
"hackernews"
],
"default": "github"
},
"max_results": {
"type": "number",
"minimum": 1,
"maximum": 50,
"description": "Maximum number of trending items to return",
"default": 10
}
},
"required": [
"search_service"
]
}Output schema{
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"description": {
"type": "string"
}
},
"required": [
"title",
"url"
]
}
}
},
"required": [
"results"
]
}Annotations{
"readOnlyHint": true,
"destructiveHint": false,
"openWorldHint": true
} | — | Read onlyNon-destructiveOpen world | — |
search1api://infoBasic information about Search1API capabilities
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
Install the selected package version with: npm install --save-exact search1api-mcp@0.6.1
Search1API MCP Server exposed 5 tools during independent protocol observation, including crawl, news, search, sitemap, trending.
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
Curated product and capability guides containing this catalog record.