agentsearch-mcp
Server Details
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- IsaiahDupree/agentsearch-mcp
- GitHub Stars
- 0
- Server Listing
- agentsearch-mcp
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 4.4/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: fetching a specific URL, retrieving a quick fact/definition, and performing a full web search. The descriptions explicitly cross-reference one another to prevent confusion.
All names use lowercase with underscores, but the grammatical pattern varies: 'fetch_url' is verb-first while 'instant_answer' and 'web_search' are noun-phrases. Mostly consistent and readable, with minor deviations.
Three tools is a well-scoped set for a search/retrieval server. Each tool contributes a distinct capability without redundancy or bloat.
The surface covers core web retrieval: fetching a page, getting a quick answer, and running a search. Missing niche features like image search or advanced filtering, but these are not critical for the apparent purpose.
Available Tools
3 toolsfetch_urlFetch a URL as clean text/markdown (RAG-ready)ARead-onlyIdempotentInspect
Fetches any public http(s) URL, strips boilerplate (scripts, nav, footer, ads), and returns clean text or markdown ready for an LLM context window. SSRF-guarded — refuses private/loopback/internal hosts. Returns url, title, format, length, content (and finalUrl when redirected, plus up to 50 extracted links when links=true), with a meta envelope. Works with no API key.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL to fetch (public http/https only). | |
| links | No | Also return up to 50 extracted links. Default false. | |
| format | No | Output format. Default text. | |
| maxChars | No | Max characters of content returned, clamped 500-500000. Default 100000. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnly, idempotent, openWorld), the description discloses SSRF-guarding, boilerplate stripping, return envelope details, follow-redirect behavior, and no API key requirement—all valuable behavioral context that annotations alone don't provide.
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?
Three concise sentences that cover purpose, safety, output, and optional parameters without any fluff. Key information is front-loaded, making it easy to parse quickly.
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 description fully explains the tool's behavior, output fields (including redirects and links), safety measures, and authentication requirements. With no output schema, the listed return fields provide sufficient completeness 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.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description mentions links and format but doesn't add substantial new semantic meaning beyond the schema. It adequately complements the schema without redundancy.
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 the specific verb 'Fetches' with the resource 'any public http(s) URL' and explicitly describes the cleaning and return of content in text/markdown formats. It distinguishes itself from siblings by focusing on fetching a known URL rather than searching or instant answers.
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 when a specific URL is known and content is needed for an LLM context window, but it does not explicitly compare with alternatives like web_search or state when-not-to-use. Thus, guidance is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
instant_answerInstant answer (keyless)ARead-onlyIdempotentInspect
DuckDuckGo Instant Answer API — definitions, entities, and quick facts. Returns a normalized answer with heading, type (abstract/answer/disambiguation), source, sourceUrl, optional image/definition, and relatedTopics, plus a meta envelope. Not a full web SERP; use web_search for that. Works with no API key.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Query. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering the safety profile. The description adds valuable context beyond annotations: the normalized answer structure (heading, type, source, etc.), the meta envelope, and the keyless authentication requirement. This goes beyond what annotations alone communicate.
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 three sentences, front-loaded with the tool's purpose, followed by return format and key differentiators (web_search, keyless). Every sentence contributes, with no redundant or filler content.
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?
This is a simple read-only tool with a single parameter, rich annotations, and no output schema. The description covers the essential behavioral contract (return format, query scope, keyless access) and correctly positions it against siblings. No critical gaps remain.
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 coverage is 100% with the 'q' parameter described as 'Query.' The description does not add meaning beyond the schema; it implies the query should be for definitions/entities but does not specify syntax or example formats. Baseline 3 is appropriate when the schema fully documents the parameter.
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 the DuckDuckGo Instant Answer API for definitions, entities, and quick facts, using a specific verb ('Returns') and resource. It explicitly distinguishes itself from web_search by stating 'Not a full web SERP', so it is uniquely positioned among siblings.
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?
It explicitly states the intended use case (definitions, entities, quick facts) and directly names the alternative: 'use web_search for that'. This provides clear when-to-use and when-not-to-use guidance, exceeding a vague implication.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_searchWeb search (SERP)ARead-onlyIdempotentInspect
Search the web via a provider-abstracted backend (Brave or Serper, configured operator-side). Returns normalized results, each with position, title, url, snippet, source, and domain, plus a meta envelope (cache state, provider, took_ms). Returns a provider_required error if no search provider key is configured upstream. Use this for a full web SERP; use instant_answer for quick facts/definitions.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Search query. | |
| limit | No | Max results, clamped to 1-20. Default 10. | |
| country | No | ISO-3166 alpha-2 region, lowercase. Default us. | |
| provider | No | Force a specific provider. Omit to use whichever is configured operator-side. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds substantial behavioral context: the normalized result structure (position, title, url, snippet, source, domain), the meta envelope (cache state, provider, took_ms), and the provider_required error condition. It does not mention rate limits or pagination, so a 4 is warranted.
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 three sentences, each serving a distinct purpose: stating the core action and provider abstraction, detailing the return envelope, and providing usage guidance. It is front-loaded with the verb and resource, with no fluff or repetition.
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 no output schema, the description compensates by explicitly listing return fields and the meta envelope. It also covers error handling, provider abstraction, and sibling differentiation. For a 4-parameter tool with robust annotations, this is complete and self-sufficient.
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?
All four parameters are fully described in the schema (100% coverage), so the description need not repeat them. The description adds a minor nuance about the provider parameter ('configured operator-side'), but otherwise relies on the schema. This matches the baseline for high schema coverage.
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 uses a specific verb ('Search the web') and identifies the resource (web via a provider-abstracted backend). It explicitly distinguishes from sibling instant_answer by stating 'Use this for a full web SERP; use instant_answer for quick facts/definitions,' making its scope 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?
Provides explicit guidance on when to use this tool vs. instant_answer, and also notes a critical precondition: a provider_required error occurs if no search provider key is configured upstream. This helps the agent decide and anticipate failures.
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-qualityCmaintenanceWeb search, clean page reading & one-call research dossiers for AI agents. No API key — your agent does the synthesis.Last updated66MIT
- Alicense-qualityBmaintenanceProvides web search and content extraction for AI agents.Last updatedMIT
- Alicense-qualityCmaintenanceProvides AI coding agents with a live web search tool that returns extracted, answer-ready text from web pages. Enables real-time information retrieval without any local installation or maintenance.Last updatedMIT
- AlicenseAqualityBmaintenanceWeb search for AI agents across 6 engines (Serper, Brave, Exa, Tavily, Firecrawl, Perplexity) through one search tool. Routes each query to the cheapest engine that clears a quality bar and caches repeats. Hosted, streamable-HTTP, BYOK supported.Last updated11MIT
Your Connectors
Sign in to create a connector for this server.