Skip to main content
Glama

Server Details

Connect AI agents to Exa for web search, content fetching, and multi-step research.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Uptime
99.9% over 40 days
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL
Repository
exa-labs/exa-mcp-server
GitHub Stars
5,048
Server Listing
Exa MCP Server

TDQS

A4.3/5.0

Scored across 2 tools

Disambiguation5/5

web_search_exa and web_fetch_exa have clearly distinct purposes: searching versus fetching full page content. The descriptions explicitly explain when to use one after the other, leaving no ambiguity.

Naming Consistency5/5

Both tools follow a consistent web_<verb>_exa pattern, using snake_case and predictable verb placement. There is no mixing of conventions.

Tool Count3/5

Two tools is thin for a server purpose that could include more operations like batch search, filtering, or specific extraction modes. While the two core actions earn their place, the set feels borderline minimal.

Completeness4/5

The server covers the core search-then-fetch workflow and supports batching for fetch. Minor gaps exist in search options such as pagination, date filtering, or result-count controls, but agents can work around them.

Available Tools

2 tools
web_fetch_exaA
Read-onlyIdempotent
Inspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsYesURLs to read. Batch multiple URLs in one call.
maxCharactersNoMaximum characters to extract per page (default: 3000)

TDQS

A4.2/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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_exaA
Read-onlyIdempotent
Inspect

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.
ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesNatural 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'.
objectiveYesGoal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.
numResultsNoNumber of search results to return (default: 10).

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well covered. The description adds behavioral context beyond annotations: it explains the return type ('clean text content from top search results'), provides query formulation guidance (describe the ideal page, not keywords), and mentions category filters. It doesn't describe pagination or rate limits, but the annotations cover the key behavioral traits.

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

Conciseness4/5

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

The description is well-structured with clear sections ('Best for', 'Returns', 'Query tips') and front-loads the core purpose. It's slightly longer than strictly necessary, but every section earns its place by providing actionable guidance. The formatting with line breaks and bullet-like structure makes it scannable.

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?

For a search tool with no output schema, the description does a good job explaining what to expect ('clean text content from top search results') and how to use it effectively. It covers the main use cases, query formulation, category filters, and follow-up strategy. It doesn't mention result count limits or pagination, but the numResults parameter is documented in the schema. The description is complete enough for an agent to call this tool correctly.

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?

Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds value by reinforcing the query style ('describe the ideal page, not keywords') and explaining the category: syntax ('Use category:people / category:company to search through Linkedin profiles / companies respectively'). This goes beyond the schema's parameter descriptions, which already include similar guidance, but the description's reinforcement is useful.

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's function: 'Search the web for any topic and get clean, ready-to-use content.' It specifies the resource (web) and the action (search), and distinguishes it from the sibling web_fetch_exa by noting it returns search results and suggesting follow-up with web_fetch_exa for fetching URLs. This is a specific verb+resource pairing that an agent can easily understand.

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

Usage Guidelines5/5

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

The description provides explicit guidance on when to use this tool: 'Best for: Finding current information, news, facts, people, companies, or answering questions about any topic.' It also gives query tips and explicitly names the alternative: 'If highlights are insufficient, follow up with web_fetch_exa on the best URLs.' This clearly routes the agent to the right tool for the right situation.

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.

  1. 1 tool update
    • Changedweb_search_exa2 fields changed
      • addedInput schema / properties / objective
        Added value: +{
        +  "description": "Goal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.",
        +  "maxLength": 4096,
        +  "minLength": 1,
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "query"
        -]New value: +[
        +  "query",
        +  "objective"
        +]
  2. 1 tool update
    • Changedweb_search_exa2 fields changed
      • removedInput schema / properties / objective
        Removed value: -{
        -  "description": "Goal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.",
        -  "maxLength": 4096,
        -  "minLength": 1,
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "query",
        -  "objective"
        -]New value: +[
        +  "query"
        +]
  3. 1 tool update
    • Changedweb_search_exa2 fields changed
      • addedInput schema / properties / objective
        Added value: +{
        +  "description": "Goal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.",
        +  "maxLength": 4096,
        +  "minLength": 1,
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "query"
        -]New value: +[
        +  "query",
        +  "objective"
        +]
  4. 1 tool update
    • Changedweb_search_exa2 fields changed
      • removedInput schema / properties / objective
        Removed value: -{
        -  "description": "Goal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.",
        -  "maxLength": 4096,
        -  "minLength": 1,
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "query",
        -  "objective"
        -]New value: +[
        +  "query"
        +]
  5. 1 tool update
    • Changedweb_search_exa2 fields changed
      • addedInput schema / properties / objective
        Added value: +{
        +  "description": "Goal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.",
        +  "maxLength": 4096,
        +  "minLength": 1,
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "query"
        -]New value: +[
        +  "query",
        +  "objective"
        +]
  6. 1 tool update
    • Changedweb_search_exa2 fields changed
      • removedInput schema / properties / objective
        Removed value: -{
        -  "description": "Goal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.",
        -  "maxLength": 4096,
        -  "minLength": 1,
        -  "type": "string"
        -}
      • changedInput schema / required
        Previous value: -[
        -  "query",
        -  "objective"
        -]New value: +[
        +  "query"
        +]
  7. 1 tool update
    • Changedweb_search_exa2 fields changed
      • addedInput schema / properties / objective
        Added value: +{
        +  "description": "Goal for this search turn; say which documents should rank first, which should be excluded, and what specific facts or figures to pull from them.",
        +  "maxLength": 4096,
        +  "minLength": 1,
        +  "type": "string"
        +}
      • changedInput schema / required
        Previous value: -[
        -  "query"
        -]New value: +[
        +  "query",
        +  "objective"
        +]
  8. 1 tool update
    • Changedweb_search_exa1 field changed
      • removedInput schema / properties / objective
        Removed 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"
        -}
  9. 1 tool update
    • Changedweb_search_exa1 field changed
      • addedInput schema / properties / objective
        Added 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"
        +}
  10. 1 tool update
    • Changedweb_search_exa1 field changed
      • removedInput schema / properties / objective
        Removed 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"
        -}
  11. 1 tool update
    • Changedweb_search_exa1 field changed
      • addedInput schema / properties / objective
        Added 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"
        +}
  12. 1 tool update
    • Changedweb_search_exa1 field changed
      • removedInput schema / properties / objective
        Removed 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"
        -}
  13. 1 tool update
    • Changedweb_search_exa1 field changed
      • addedInput schema / properties / objective
        Added 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"
        +}
  14. 1 tool update
    • Changedweb_search_exa1 field changed
      • removedInput schema / properties / objective
        Removed 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"
        -}
  15. 1 tool update
    • Changedweb_search_exa1 field changed
      • addedInput schema / properties / objective
        Added 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"
        +}
  16. 1 tool update
    • Changedweb_search_exa1 field changed
      • removedInput schema / properties / objective
        Removed 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"
        -}
  17. 1 tool update
    • Changedweb_search_exa1 field changed
      • addedInput schema / properties / objective
        Added 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"
        +}
  18. 1 tool update
    • Changedweb_search_exa1 field changed
      • removedInput schema / properties / objective
        Removed 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"
        -}
  19. 1 tool update
    • Changedweb_search_exa1 field changed
      • addedInput schema / properties / objective
        Added 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"
        +}
  20. 1 tool update
    • Changedweb_search_exa1 field changed
      • removedInput schema / properties / objective
        Removed 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"
        -}

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Connects AI assistants to Exa AI's search capabilities for web search, code context retrieval from GitHub repos and documentation, company research, LinkedIn search, and deep research tasks.
    2 npm
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Connects AI assistants to Exa's search capabilities, enabling web search, code search, and company research.
    22,768 npm
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to perform web searches, research papers, Twitter searches, company research, URL crawling, and LinkedIn searches using the Exa AI Search API for real-time web information.
    22,768 npm
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.