MCP server intelligence profile

Search1API MCP Server

A Model Context Protocol (MCP) server that provides search and crawl functionality using Search1API

Hybridsuperagents-lab
Awaiting current scanNpm · 0.6.1

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
5Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

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.1

Identity

Canonical slugsearch1api-mcp-server-af324bc5DeploymentHybrid
Canonical packagenpm:search1api-mcpRepositorysuperagents-lab/search1api-mcp
First publishedLatest release
Last security verificationClassification confidence82%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmsearch1api-mcp0.6.119Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmsearch1api-mcp0.6.1CurrentSep 5, 20265 toolsSucceeded · 1 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
search1api-serverServer-reported name
2Capability groups
Sep 3, 2026Observed

Tools 5

ToolCategoryAnnotationsRisk
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

Resources 1

  • Search1API Informationsearch1api://info

    Basic information about Search1API capabilities

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Search1API MCP Server questions

How do I install Search1API MCP Server?

Install the selected package version with: npm install --save-exact search1api-mcp@0.6.1

What tools does Search1API MCP Server provide?

Search1API MCP Server exposed 5 tools during independent protocol observation, including crawl, news, search, sitemap, trending.

Is Search1API MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.