search-router
Server Details
4 web-search tiers (x402 USDC on Base) - simple/medium/deep/cached. Free health.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 5 of 5 tools scored.
Each search tool has a distinct purpose: cached, deep, medium, and simple searches are clearly differentiated by query type and cost. The health tool is also clearly separate.
The four search tools follow a consistent web_search_<modifier> pattern, making their hierarchy obvious. The health tool breaks the pattern but is a standard auxiliary endpoint.
With 5 tools, the server is well-scoped for its purpose of routing search queries. Each tier earns its place without unnecessary duplication.
The search tiers cover a spectrum from cache-only to deep research, and the health check provides operational coverage. No obvious gaps in the search domain.
Available Tools
5 toolshealthAInspect
Health check. Returns server status and optional echo.
| Name | Required | Description | Default |
|---|---|---|---|
| echo | No | Optional string to echo back |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. It states that the tool returns server status and supports an optional echo, which conveys read-only behavior and basic functionality. However, it lacks detail about response format, possible failure modes, or whether echo alters the response.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, consisting of two short sentences that immediately state the tool's purpose and behavior. No filler or redundant information is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity, a single optional parameter, and no nested structures, the description covers the essentials. It does not describe the exact shape of 'server status', but for a health check this is a minor gap, and the description is sufficient for an agent to understand and invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully describes the sole parameter `echo` as an optional string to echo back, and the description confirms this behavior. Since schema coverage is 100%, the description adds no substantial semantic value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a health check that returns server status, which is a specific resource and verb. It distinguishes from the sibling web search tools by indicating this is a system-level status endpoint, though it does not explicitly contrast with alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage context is implied: use this when you need server health or status. No explicit when-to-use or when-not-to-use guidance is provided, nor are alternatives mentioned, but the tool's purpose is straightforward enough that the description is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_search_cachedAInspect
Cache-only lookup; returns SEARCH_CACHE_MISS error if not in cache. Fixed $0.002/call.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query string | |
| country | No | ISO 3166-1 alpha-2 country code | |
| language | No | Language code (e.g. 'en', 'pt-PT') | |
| freshness | No | Recency filter for results | |
| max_results | No | Number of results (1-20, default 10) | |
| search_type | No | Type of search to perform |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It candidly discloses the cache dependency, the specific SEARCH_CACHE_MISS error on failure, and the fixed cost per call – all useful behavioral details beyond the tool name. It doesn't cover every aspect (e.g., rate limits, output format) but covers the most distinctive behaviors.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a tight two-sentence summary with the most critical info (cache-only, error, price) front-loaded. Every word adds value, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is a straightforward cached lookup with 6 params and no output schema. The description covers the cache behavior and error, but does not describe what a successful response looks like or how to interpret results. Given the lack of an output schema, some return-format guidance would improve completeness, but the essential usage context is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (all 6 parameters have descriptions), so the schema fully documents parameter semantics. The description adds no additional parameter-specific information, landing at the baseline score of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool is a 'cache-only lookup', which clearly identifies a specific operation (lookup) and distinguishes it from sibling search tools by the cache-only constraint. However, it relies on the tool name to imply the resource (web search), and 'lookup' is slightly less explicit than 'search'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'cache-only' qualifier implies this tool should be used when cached results are acceptable, and the error message hints that live tools like web_search_simple or web_search_deep might be alternatives. However, no explicit when-to-use or when-not-to-use guidance is given, and sibling tools are not mentioned by name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_search_deepAInspect
Deep research search via Exa (academic, boolean, multi-source synthesis). Fixed $0.015/call.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query string | |
| country | No | ISO 3166-1 alpha-2 country code | |
| language | No | Language code (e.g. 'en', 'pt-PT') | |
| freshness | No | Recency filter for results | |
| max_results | No | Number of results (1-20, default 10) | |
| search_type | No | Type of search to perform |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses the fixed cost per call and the external provider (Exa), and hints at synthesis behavior. However, it does not state whether the tool is read-only, rate limits, or what the response format will be, which are significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that conveys purpose, provider, key capabilities, and cost. There is no unnecessary wording or redundancy, making it highly concise and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite complete schema coverage, the description lacks crucial context for a tool with no output schema. It never states what the tool returns (e.g., a list of results vs. a synthesized narrative) or explains the operational difference from sibling search tools. This is a notable gap for a feature-rich search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents all six parameters with descriptions, so baseline is 3. The description adds value by indicating that queries support boolean operators and that results involve multi-source synthesis, giving extra meaning to the query parameter and overall behavior beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies this as a deep research search tool via Exa, with explicit scope (academic, boolean, multi-source synthesis). The word 'deep' distinguishes it from the sibling tools, making its purpose specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for deep research (academic, multi-source synthesis) but does not explicitly state when to use this tool versus web_search_simple, web_search_medium, or web_search_cached. No exclusions or alternatives are mentioned, leaving the decision to inference from the name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_search_mediumAInspect
Default web search via Brave for ambiguous or general queries. Fixed $0.008/call.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query string | |
| country | No | ISO 3166-1 alpha-2 country code | |
| language | No | Language code (e.g. 'en', 'pt-PT') | |
| freshness | No | Recency filter for results | |
| max_results | No | Number of results (1-20, default 10) | |
| search_type | No | Type of search to perform |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. It discloses the back-end engine (Brave) and the fixed cost ($0.008/call), but does not detail expected response format, rate limits, or other behavioral traits. The basic nature of a search tool is implied, but more explicit disclosure would improve transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the core purpose ('Default web search via Brave') and appends the cost detail. There is no wasted wording, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the schema fully documents parameters and the output is obviously a list of search results, the description provides adequate tool-level context (engine, cost, scope). It omits any mention of return structure, which would be nice but is not essential for a straightforward search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter (query, country, language, freshness, max_results, search_type) already documented clearly. The tool description adds no additional parameter-level meaning, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it is a 'Default web search via Brave' and specifies it is for 'ambiguous or general queries.' This identifies a specific verb (search), resource (web via Brave), and scope, distinguishing it from the sibling tools (e.g., web_search_deep, web_search_simple).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context by framing this as the default search tool for ambiguous or general queries. It does not explicitly list exclusions or name alternative tools for other cases, but the 'default' qualifier strongly implies its place among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_search_simpleAInspect
Simple factual web search via Brave (lookups, definitions, short queries). Fixed $0.003/call.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query string | |
| country | No | ISO 3166-1 alpha-2 country code | |
| language | No | Language code (e.g. 'en', 'pt-PT') | |
| freshness | No | Recency filter for results | |
| max_results | No | Number of results (1-20, default 10) | |
| search_type | No | Type of search to perform |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It adds the provider (Brave) and the fixed cost of $0.003/call, which is useful behavioral context. However, it does not disclose the result format, pagination, or error behavior beyond what 'web search' implies.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence with no wasted words. It efficiently conveys purpose, use cases, and pricing, making it easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the comprehensive schema (all 6 params with descriptions) and the simple nature of the tool, the description covers essential context: purpose, use cases, provider, and cost. It doesn't explain return values explicitly, but the term 'web search' reasonably implies a list of results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% field description coverage, so each parameter is already documented clearly. The description adds no parameter-specific details, so it does not elevate beyond the baseline established by the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Simple factual web search via Brave' – a clear verb (search), resource (web), and provider (Brave). It lists use cases (lookups, definitions, short queries) that differentiate it from deeper search siblings, though it doesn't explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear use-case context: 'lookups, definitions, short queries' – indicating it is for simple, factual queries. This guides when to use, but doesn't explicitly state when not to use or mention alternative tools like web_search_deep.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenancePay-per-call web search for AI agents, settled in USDC on Base via the x402 protocol. No API key or subscription required; users fund a wallet and get a web_search tool.101MIT

hyperd-mcpofficial
AlicenseAqualityBmaintenancePre-trade DeFi intelligence for AI agents. 20 paid x402 endpoints, USDC on Base.23561MIT- AlicenseAqualityAmaintenancePaid web research MCP tools for autonomous agents: search, page extraction, citations, and diff monitoring through a live x402 API. Unpaid calls return the Base USDC payment requirement so agents can pay and retry safely.41MIT
- Alicense-qualityDmaintenanceEnables web search for AI agents with pay-per-search in USDC, no API keys needed.MIT