Skip to main content
Glama
superagents-lab

Search1API MCP Server

Search1API MCP Server

Glama

中文文档

The official MCP server for Search1API — web search, news, page retrieval, sitemap discovery, and trending topics in one API.

Authentication

  • OAuth-aware clients can connect to the Remote MCP URL directly, then sign in and approve access in the browser.

  • Existing integrations can continue to use an API key from the Search1API dashboard.

  • Every MCP request — including tool discovery (initialize, tools/list) — requires a credential. Unauthenticated requests draw the OAuth challenge, which is how clients trigger sign-in; pre-connect inspection is served by the static server card instead.

Related MCP server: WebSearch-MCP

Quick Start (Remote MCP)

No installation required. Configure your MCP client with the remote URL. Use OAuth when the client supports it, or provide an API key.

Authentication

Three methods are supported — use whichever your client supports:

Method

Format

OAuth 2.1

Connect to https://mcp.search1api.com/mcp without a key and follow the client sign-in flow

Authorization Header

Authorization: Bearer YOUR_SEARCH1API_KEY

URL Query Parameter (legacy)

https://mcp.search1api.com/mcp?apiKey=YOUR_SEARCH1API_KEY

Prefer OAuth or the Authorization header. Query-parameter credentials can be exposed in URLs, logs, and shell history.

Claude Desktop

{
  "mcpServers": {
    "search1api": {
      "url": "https://mcp.search1api.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SEARCH1API_KEY"
      }
    }
  }
}

Claude.ai (Web)

Settings > Connectors > Add custom connector:

https://mcp.search1api.com/mcp?apiKey=YOUR_SEARCH1API_KEY

Cursor

Install as a Cursor plugin (recommended): this repo includes Agent Plugins plugin.json + mcp.json (portable) and .cursor-plugin/plugin.json (Cursor Marketplace metadata / logo) for Remote MCP with OAuth. Submit or install from cursor.directory / the Cursor Marketplace, then sign in when prompted.

For local testing, copy the plugin files into ~/.cursor/plugins/local/search1api (plugin.json, .cursor-plugin/, mcp.json, assets/). Do not symlink from outside that directory — Cursor rejects external symlink targets.

Or configure manually:

{
  "mcpServers": {
    "search1api": {
      "url": "https://mcp.search1api.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SEARCH1API_KEY"
      }
    }
  }
}

VS Code

{
  "servers": {
    "search1api": {
      "type": "http",
      "url": "https://mcp.search1api.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SEARCH1API_KEY"
      }
    }
  }
}

Claude Code

claude mcp add --transport http search1api https://mcp.search1api.com/mcp \
  --header "Authorization: Bearer YOUR_SEARCH1API_KEY"

Windsurf

{
  "mcpServers": {
    "search1api": {
      "serverUrl": "https://mcp.search1api.com/mcp?apiKey=YOUR_SEARCH1API_KEY"
    }
  }
}

Agent Skill

The Agent Skill has moved to search1api-cli. Install it with:

npm install -g search1api-cli
npx skills add superagents-lab/search1api-cli

Local Mode (stdio)

If you prefer to run the server locally, use Node.js 20 or newer with npx — no cloning required:

{
  "mcpServers": {
    "search1api": {
      "command": "npx",
      "args": ["-y", "search1api-mcp"],
      "env": {
        "SEARCH1API_KEY": "YOUR_SEARCH1API_KEY"
      }
    }
  }
}

For self-hosted HTTP deployments behind a proxy, add any internal hostnames that reach the Node.js process to the comma-separated MCP_ALLOWED_HOSTS environment variable. mcp.search1api.com and localhost addresses are allowed by default. Browser-based clients that send an Origin header must also have their trusted origin hostnames added to the comma-separated MCP_ALLOWED_ORIGINS variable. Requests from server-side MCP clients normally omit Origin and do not require an entry.

Tools

Search the web using Search1API. Results include a citable id/title/url structure. Pass a result URL to crawl when you need the full page.

Parameter

Required

Default

Description

query

Yes

-

Search query

max_results

No

10

Number of results

search_service

No

google

google, bing, duckduckgo, yahoo, x, reddit, github, youtube, arxiv, wechat, bilibili, imdb, wikipedia

crawl_results

No

0

Number of top results to crawl for full content; each successful crawl adds 1 credit to the base 1-credit search request

include_sites

No

[]

Sites to include

exclude_sites

No

[]

Sites to exclude

time_range

No

-

day, month, year

news

Search for news articles.

Parameter

Required

Default

Description

query

Yes

-

Search query

max_results

No

10

Number of results

search_service

No

bing

google, bing, duckduckgo, yahoo, hackernews

crawl_results

No

0

Number of top results to crawl for full content; each successful crawl adds 1 credit to the base 1-credit news request

include_sites

No

[]

Sites to include

exclude_sites

No

[]

Sites to exclude

time_range

No

-

day, month, year

crawl

Extract content from a URL.

Parameter

Required

Description

url

Yes

URL to crawl

sitemap

Get all related links from a URL.

Parameter

Required

Description

url

Yes

URL to get sitemap

Get trending topics from popular platforms.

Parameter

Required

Default

Description

search_service

Yes

-

github, hackernews

max_results

No

10

Number of items

Version History

  • v0.6.1: Bug fix — MCP discovery (initialize, tools/list, resources/*, prompts/list, server/discover) requires a credential again. Serving it anonymously made clients that equate "tools listed" with "signed in" show a connected state with no way to trigger the OAuth flow; the 401 challenge now answers every unauthenticated request, restoring OAuth sign-in at connect time. Directory visibility is unchanged via the static server card and registry metadata

  • v0.6.0: MCP discovery (initialize, tools/list, resources/*, prompts/list, server/discover) is served without a credential so clients and directories can enumerate tools before signing in; tool calls still require OAuth or an API key. Stdio mode starts without SEARCH1API_KEY and serves tool metadata, refusing only at call time. Malformed requests answer as JSON-RPC instead of an HTML error page

  • v0.5.4: OAuth issuer moved to clerk.s1.dev and is configurable with OAUTH_AUTHORIZATION_SERVER; MCP server card published at /.well-known/mcp/server-card.json; OAuth discovery documents now send cache headers

  • v0.5.3: OAuth resource and tool metadata no longer require OIDC session scopes; Smithery and Glama registry badges added

  • v0.5.2: MCP Origin validation now runs before request parsing and authentication; self-hosted HTTP deployments can configure trusted browser origins with MCP_ALLOWED_ORIGINS

  • v0.5.1: Documentation, LobeHub manifest, and MCP Registry metadata synchronized; robots.txt served on the transport host

  • v0.5.0: MCP 2026-07-28 support with automatic protocol negotiation; stateless compatibility for 2025-era HTTP clients; request-level authentication

  • v0.4.0: Structured output schemas, OAuth security schemes, safety annotations, and Official MCP Registry metadata

  • v0.3.1: OAuth 2.1 support for Remote MCP; retired reasoning tool removed

  • v0.3.0: Remote MCP support via Streamable HTTP; per-session API key authentication

  • v0.2.0: Fallback .env support for LibreChat integration

  • v0.1.8: X (Twitter) and Reddit search services

  • v0.1.7: Trending tool for GitHub and Hacker News

  • v0.1.6: Wikipedia search service

  • v0.1.5: New search parameters and services (arxiv, wechat, bilibili, imdb)

  • v0.1.3: News search

  • v0.1.2: Sitemap

  • v0.1.1: Web crawling

  • v0.1.0: Initial release

License

MIT

Available Tools

5 tools
crawlRead a web pageA
Read-only
Inspect

Extract the readable title and full text from a public URL supplied by the user or returned by search.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic HTTP or HTTPS URL to retrieve

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish readOnly, openWorld, and non-destructive behavior. The description adds meaningful context by stating the tool only handles public URLs and that it extracts a readable title and full text, which clarifies scope and likely output shape beyond the annotations alone.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that leads with the tool's core behavior and captures the essential use case. Every word earns its place and there is no redundant or misleading filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter, read-only tool with output schema available and strong annotations, the description is complete. It states the source of the URL, the public access requirement, and the output concept well enough for an agent to invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already describes the single `url` parameter with a format and a 'Public HTTP or HTTPS URL' description at 100% coverage. The tool description adds useful source context ('supplied by the user or returned by search') but does not materially extend the parameter meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Extract the readable title and full text') and a specific resource ('a public URL'), making it clear this tool retrieves and reads a single page rather than searching for pages. It also implicitly differentiates from sibling discovery tools like search, news, and trending by framing the URL as an input that can come from the user or search results.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly conveys when to use the tool: given a public URL, either supplied by the user or returned from a search. It does not explicitly list excluded cases or contrast with sibling tools, so it falls short of the explicit 'when-not-to-use' criterion, but the usage context is sufficiently clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

newsSearch current newsA
Read-only
Inspect

Search current news when the user asks about recent events, announcements, or coverage. Returns citable article results with title, URL, snippet, and optional extracted text.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesShort, focused news query
time_rangeNoOptional recency window; use day for breaking news
max_resultsNoMaximum number of articles to return
crawl_resultsNoNumber of top articles to retrieve as full pages. Each successful retrieval adds 1 credit to the base 1-credit news request
exclude_sitesNoNews domains to exclude
include_sitesNoNews domains to include
search_serviceNoNews search engine to usebing

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (readOnlyHint, openWorldHint, destructiveHint), the description adds that crawl_results incur an additional credit cost per successful retrieval, a behavioral detail not in annotations. It also describes return fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences: the first states purpose and when to use, the second describes output. No wasted words, front-loaded with key information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (7 params, 1 required) and presence of output schema, the description covers core purpose, output format, and a key behavioral aspect (credit cost). It could mention the default search engine or max_results default, but the schema covers these.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, the description adds value by explaining the credit cost for crawl_results, which is not in the schema. It also clarifies the optional extracted text relates to crawling. This goes beyond the schema's parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Search current news' and specifies returning articles with title, URL, snippet, and optional text. It clearly identifies the resource (current news) and action (search), but does not explicitly differentiate from sibling tools like 'trending' or 'search'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says 'when the user asks about recent events, announcements, or coverage', giving context for use. However, it does not mention when not to use this tool or explicitly compare with alternatives among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sitemapDiscover links on a siteA
Read-only
Inspect

Discover related public links from a page or domain when the user wants to explore a site's structure or available pages.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublic page or domain URL whose links should be discovered

Output Schema

ParametersJSON Schema
NameRequiredDescription
linksYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description aligns with annotations (readOnlyHint, openWorldHint) and adds context about discovering related public links, enhancing understanding of the tool's read-only, open-world behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that efficiently conveys the action and usage context without unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the description covers the basic purpose, it lacks specificity about the scope of link discovery (e.g., same domain only, depth), leaving some ambiguity for a tool with a simple interface.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already covers the parameter description completely (100% coverage), so the tool description adds no additional parameter semantics beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool discovers related public links and specifies the context of exploring a site's structure or available pages, distinguishing it from sibling tools like search or fetch.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear use case ('when the user wants to explore a site's structure or available pages') but does not explicitly mention when not to use it or suggest alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool updatev0.5.4
    • Removedfetch
  2. 6 tool updatesv0.4.0
    • Changedcrawl3 fields changed
      • changedInput schema / properties / url / description
        Previous value: -"URL to crawl"New value: +"Public HTTP or HTTPS URL to retrieve"
      • addedInput schema / properties / url / format
        Added value: +"uri"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "result": {
        +      "properties": {
        +        "id": {
        +          "description": "Stable identifier for this result; for web results this is the canonical URL",
        +          "type": "string"
        +        },
        +        "metadata": {
        +          "additionalProperties": true,
        +          "description": "Additional source metadata",
        +          "type": "object"
        +        },
        +        "text": {
        +          "description": "Result snippet or extracted page text when available",
        +          "type": "string"
        +        },
        +        "title": {
        +          "description": "Human-readable result title",
        +          "type": "string"
        +        },
        +        "url": {
        +          "description": "Canonical URL that clients can cite and users can open",
        +          "format": "uri",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "id",
        +        "title",
        +        "url"
        +      ],
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "result"
        +  ],
        +  "type": "object"
        +}
    • Addedfetch
    • Changednews11 fields changed
      • changedInput schema / properties / crawl_results / description
        Previous value: -"Number of top results to crawl for full webpage content. Each successfully crawled page adds 1 credit to the base 1-credit news request"New value: +"Number of top articles to retrieve as full pages. Each successful retrieval adds 1 credit to the base 1-credit news request"
      • addedInput schema / properties / crawl_results / minimum
        Added value: +0
      • changedInput schema / properties / exclude_sites / description
        Previous value: -"List of sites to exclude from search. Only use when you need to explicitly filter out specific domains from results"New value: +"News domains to exclude"
      • changedInput schema / properties / include_sites / description
        Previous value: -"List of sites to include in search. Only use when you need special results from sites not available in search_service"New value: +"News domains to include"
      • changedInput schema / properties / max_results / description
        Previous value: -"Maximum number of results to return"New value: +"Maximum number of articles to return"
      • addedInput schema / properties / max_results / maximum
        Added value: +50
      • addedInput schema / properties / max_results / minimum
        Added value: +1
      • changedInput schema / properties / query / description
        Previous value: -"Search query, be simple and concise"New value: +"Short, focused news query"
      • changedInput schema / properties / search_service / description
        Previous value: -"Specify the news engine to use. Choose based on your specific needs"New value: +"News search engine to use"
      • changedInput schema / properties / time_range / description
        Previous value: -"Time range for search results, only use when specific time constraints are required"New value: +"Optional recency window; use day for breaking news"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "results": {
        +      "items": {
        +        "properties": {
        +          "id": {
        +            "description": "Stable identifier for this result; for web results this is the canonical URL",
        +            "type": "string"
        +          },
        +          "metadata": {
        +            "additionalProperties": true,
        +            "description": "Additional source metadata",
        +            "type": "object"
        +          },
        +          "text": {
        +            "description": "Result snippet or extracted page text when available",
        +            "type": "string"
        +          },
        +          "title": {
        +            "description": "Human-readable result title",
        +            "type": "string"
        +          },
        +          "url": {
        +            "description": "Canonical URL that clients can cite and users can open",
        +            "format": "uri",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "id",
        +          "title",
        +          "url"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "required": [
        +    "results"
        +  ],
        +  "type": "object"
        +}
    • Changedsearch10 fields changed
      • changedInput schema / properties / crawl_results / description
        Previous value: -"Number of top results to crawl for full webpage content. Each successfully crawled page adds 1 credit to the base 1-credit search request"New value: +"Number of top results to retrieve as full pages. Each successful page retrieval adds 1 credit to the base 1-credit search request"
      • addedInput schema / properties / crawl_results / minimum
        Added value: +0
      • changedInput schema / properties / exclude_sites / description
        Previous value: -"List of sites to exclude from search. Only use when you need to explicitly filter out specific domains from results"New value: +"Domains to exclude from the search"
      • changedInput schema / properties / include_sites / description
        Previous value: -"List of sites to include in search. Only use when you need special results from sites not available in search_service"New value: +"Domains to include when the user explicitly scopes the search"
      • addedInput schema / properties / max_results / maximum
        Added value: +50
      • addedInput schema / properties / max_results / minimum
        Added value: +1
      • changedInput schema / properties / query / description
        Previous value: -"Search query, be simple and concise"New value: +"Short, focused search query"
      • changedInput schema / properties / search_service / description
        Previous value: -"Specify the search engine to use. Choose based on your specific needs"New value: +"Search engine to use; choose one only when it matches the user's source intent"
      • changedInput schema / properties / time_range / description
        Previous value: -"Time range for search results, only use when specific time constraints are required"New value: +"Optional recency window for time-sensitive searches"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "results": {
        +      "items": {
        +        "properties": {
        +          "id": {
        +            "description": "Stable identifier for this result; for web results this is the canonical URL",
        +            "type": "string"
        +          },
        +          "metadata": {
        +            "additionalProperties": true,
        +            "description": "Additional source metadata",
        +            "type": "object"
        +          },
        +          "text": {
        +            "description": "Result snippet or extracted page text when available",
        +            "type": "string"
        +          },
        +          "title": {
        +            "description": "Human-readable result title",
        +            "type": "string"
        +          },
        +          "url": {
        +            "description": "Canonical URL that clients can cite and users can open",
        +            "format": "uri",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "id",
        +          "title",
        +          "url"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "required": [
        +    "results"
        +  ],
        +  "type": "object"
        +}
    • Changedsitemap3 fields changed
      • changedInput schema / properties / url / description
        Previous value: -"URL to get sitemap"New value: +"Public page or domain URL whose links should be discovered"
      • addedInput schema / properties / url / format
        Added value: +"uri"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "links": {
        +      "items": {
        +        "format": "uri",
        +        "type": "string"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "required": [
        +    "links"
        +  ],
        +  "type": "object"
        +}
    • Changedtrending4 fields changed
      • addedInput schema / properties / max_results / maximum
        Added value: +50
      • addedInput schema / properties / max_results / minimum
        Added value: +1
      • changedInput schema / properties / search_service / description
        Previous value: -"Specify the platform to get trending topics from"New value: +"Platform whose trending items should be returned"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "results": {
        +      "items": {
        +        "properties": {
        +          "description": {
        +            "type": "string"
        +          },
        +          "title": {
        +            "type": "string"
        +          },
        +          "url": {
        +            "format": "uri",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "title",
        +          "url"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "required": [
        +    "results"
        +  ],
        +  "type": "object"
        +}
  3. 3 tool updatesv0.3.1
    • Changednews1 field changed
      • changedInput schema / properties / crawl_results / description
        Previous value: -"Number of results to crawl for full webpage content, useful when search result summaries are insufficient for complex queries"New value: +"Number of top results to crawl for full webpage content. Each successfully crawled page adds 1 credit to the base 1-credit news request"
    • Removedreasoning
    • Changedsearch1 field changed
      • changedInput schema / properties / crawl_results / description
        Previous value: -"Number of results to crawl for full webpage content, useful when search result summaries are insufficient for complex queries"New value: +"Number of top results to crawl for full webpage content. Each successfully crawled page adds 1 credit to the base 1-credit search request"
  4. 6 tool updatesv0.1.8
    • First observedcrawl
    • First observednews
    • First observedreasoning
    • First observedsearch
    • First observedsitemap
    • First observedtrending

TDQS

A4.1/5.0
Disambiguation4/5

Each tool targets a distinct need—general web search, news search, page extraction, site exploration, and trending content—but search and news/trending overlap somewhat on current/popular information. Descriptions are clear enough that an agent should usually pick the right one.

Naming Consistency4/5

All tool names are short, lowercase, single words, giving a consistent visual style. However, they mix verbs (search, crawl) with nouns/adjectives (news, sitemap, trending), so there is no uniform verb_noun or action_entity pattern.

Tool Count5/5

Five tools is a well-scoped number for a search/information-retrieval server. Each tool adds a distinct capability without bloat or redundancy.

Completeness5/5

The server covers the full search-to-content workflow: discover via search/news/trending, explore site structure via sitemap, and fetch full text via crawl. No major missing operation is evident for its stated purpose.

Maintenance

ActivityActive
ResponsivenessResponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/superagents-lab/search1api-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server