exa
Server Details
Fast, intelligent web search and web crawling.
New mcp tool: Exa-code is a context tool for coding
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- exa-labs/exa-mcp-server
- GitHub Stars
- 4,963
- Server Listing
- Exa MCP Server
Available Tools
2 toolsweb_fetch_exaARead-onlyIdempotentInspect
Read a webpage's full content as clean markdown. Use after web_search_exa when highlights are insufficient or to read any URL.
Best for: Extracting full content from known URLs. Batch multiple URLs in one call. Returns: Clean text content and metadata from the page(s).
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | URLs to read. Batch multiple URLs in one call. | |
| maxCharacters | No | Maximum characters to extract per page (default: 3000) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds useful context about returning clean markdown and metadata, and supporting batching. However, it claims 'full content' while the schema includes a maxCharacters default of 3000, and the description does not disclose that pages are truncated unless the limit is increased, which is a significant gap in behavioral 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 three short sentences, each adding value: the core function, usage guidance, and return expectation. It is front-loaded with the most important information and avoids any 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?
For a simple read tool with two parameters and strong annotations, the description is mostly complete: it states the input (URLs), output (text and metadata), and when to use it. The only notable omission is the character limit caveat, which prevents a perfect completeness score.
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 provides descriptions for both parameters (urls and maxCharacters), covering 100% of the parameters. The description contributes little beyond repeating the batching capability already in the schema, so it does not add meaningful extra meaning beyond the structured data.
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 tool reads a webpage's full content as clean markdown, with an explicit verb and resource. It also distinguishes from the sibling tool web_search_exa by specifying its use case: after search when highlights are insufficient or for reading any URL.
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 explicitly says to use this tool after web_search_exa when highlights are insufficient, and it highlights best uses (extracting full content from known URLs, batching multiple URLs). This provides clear when-to-use guidance and names the alternative, leaving no ambiguity about when to choose this tool over the sibling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
web_search_exaARead-onlyIdempotentInspect
Search the web for any topic and get clean, ready-to-use content.
Best for: Finding current information, news, facts, people, companies, or answering questions about any topic.
Returns: Clean text content from top search results.
Query tips:
describe the ideal page, not keywords. "blog post comparing React and Vue performance" not "React vs Vue".
Use category:people / category:company to search through Linkedin profiles / companies respectively.
If highlights are insufficient, follow up with web_fetch_exa on the best URLs.| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language search query. Should be a semantically rich description of the ideal page, not just keywords. Optionally include category:<type> (company, people) to focus results — e.g. 'category:people John Doe software engineer'. | |
| numResults | No | Number of search results to return (default: 10). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey read-only, idempotent, non-destructive behavior. The description adds useful behavioral context: it returns clean text content, top results, and can filter via category:people or category:company. It does not mention rate limits or pagination, but for this simple search tool with strong annotations, the added transparency is solid.
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 well-structured and front-loaded: it states the core function, then returns, then best-for usage, then query tips. Every line adds value—no filler—and the formatting makes it easy for an agent 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?
For a read-only search tool with only two parameters and no output schema, the description is complete: it explains what the tool returns, how to craft queries, how to use categories, and how to proceed with a sibling tool when needed. The numResults parameter is fully documented in the schema, so its omission here is fine.
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 adds extra semantic guidance beyond the schema, such as 'category:company' for searching companies and a concrete example of describing the ideal page rather than using keywords. These details make the query parameter more actionable.
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 and resource: 'Search the web for any topic and get clean, ready-to-use content.' It clearly distinguishes the tool from its sibling by positioning it as a search step and even references web_fetch_exa as the follow-up step, making the tool's role 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?
It provides explicit usage context: 'Best for: Finding current information, news, facts, people, companies, or answering questions' and gives concrete query construction tips. It also states when to use the sibling tool: 'If highlights are insufficient, follow up with web_fetch_exa on the best URLs.'
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 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
1 tool update
- Changed
web_search_exa1 field changed- removed
Input schema / properties / objectiveRemoved value: -{ - "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", - "maxLength": 4096, - "minLength": 1, - "type": "string" -}
1 tool update
- Changed
web_search_exa1 field changed- added
Input schema / properties / objectiveAdded value: +{ + "description": "The broader task this search is part of. Always include it when known. It supplements the query rather than replacing it so write the query as you normally would.", + "maxLength": 4096, + "minLength": 1, + "type": "string" +}
2 tool updates
- Changed
web_fetch_exa1 field changed- changed
Output schema / (root)Previous value: -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "additionalProperties": false, - "properties": { - "errors": { - "items": { - "additionalProperties": false, - "properties": { - "error": { - "type": "string" - }, - "url": { - "type": "string" - } - }, - "required": [ - "url", - "error" - ], - "type": "object" - }, - "type": "array" - }, - "results": { - "items": { - "additionalProperties": true, - "properties": { - "author": { - "type": "string" - }, - "publishedDate": { - "type": "string" - }, - "text": { - "type": "string" - }, - "title": { - "type": [ - "string", - "null" - ] - }, - "url": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - "searchTime": { - "type": "number" - } - }, - "required": [ - "results", - "errors" - ], - "type": "object" -}New value: +null
- Changed
web_search_exa1 field changed- changed
Output schema / (root)Previous value: -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "additionalProperties": false, - "properties": { - "results": { - "items": { - "additionalProperties": true, - "properties": { - "author": { - "type": "string" - }, - "highlights": { - "items": { - "type": "string" - }, - "type": "array" - }, - "publishedDate": { - "type": "string" - }, - "text": { - "type": "string" - }, - "title": { - "type": [ - "string", - "null" - ] - }, - "url": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - "searchTime": { - "type": "number" - } - }, - "required": [ - "results" - ], - "type": "object" -}New value: +null
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Exa MCP — neural/semantic web search + content retrieval (exa.ai)
Scrape, crawl and search the web for AI agents via MCP.
One MCP for the Web. Easily search, crawl, navigate, and extract websites without getting blocked.…
Search the agentic web. 4,100+ sites, 11 tools incl. check_url + verify_mcp for probe-before-use.
Related MCP Servers
- FlicenseAqualityCmaintenanceAn MCP server that brings Parallel web search and URL extraction to Codex and other Model Context Protocol clients.221-
- AlicenseNot gradedqualityCmaintenanceA Model Context Protocol server that exposes powerful web search and scraping tools to AI agents and MCP-compatible clients.Apache 2.0
- FlicenseNot gradedqualityDmaintenanceUnified gateway to Exa, Websets, and Deep Search for code search, deep research, and structured citations via any MCP client.-
- FlicenseNot gradedqualityDmaintenanceBridge the gap between your web crawl and AI language models. With mcp-server-webcrawl, your AI client filters and analyzes web content under your direction or autonomously, extracting insights from your web content. Supports WARC, wget, InterroBot, Katana, and SiteOne crawlers.45Python-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The two tools have clearly distinct purposes: web_search_exa finds relevant pages, and web_fetch_exa retrieves full content from known URLs. There is no overlap or ambiguity about when to use each.
Both tool names follow the same web_<verb>_exa pattern using lowercase snake_case. The consistent structure makes the tool set predictable and easy to navigate.
With only two tools, the server is slightly lean, but both tools earn their place and cover the two core operations of search-and-retrieve. The scope is narrow enough that additional tools would likely be unnecessary.
For a web search/fetch server, the workflow is complete: search to discover relevant pages, then fetch to read full content if needed. There are no obvious dead ends or missing operations within the stated purpose.