Exa MCP Server

Researchstdiov1.2.0
Репозиторий

MCP server for Exa's neural search API. Provides AI agents with powerful web search capabilities using embeddings-based semantic search. Returns clean, parsed content from web pages with relevance scoring. Supports filtering by domain, date range, and content type for precise information retrieval from the internet.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

{
  "mcpServers": {
    "exa": {
      "command": "npx",
      "args": [
        "-y",
        "exa-mcp-server"
      ],
      "env": {
        "EXA_API_KEY": "<YOUR_EXA_API_KEY>"
      }
    }
  }
}

Инструменты (3)

search

Perform a neural search query and return relevant web results with content.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Natural language search query"
    },
    "category": {
      "type": "string",
      "description": "Content category filter (news, blog, academic, etc.)"
    },
    "numResults": {
      "type": "integer",
      "description": "Number of results to return (default 10)"
    },
    "excludeDomains": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Exclude results from these domains"
    },
    "includeDomains": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Only include results from these domains"
    },
    "startPublishedDate": {
      "type": "string",
      "description": "Filter results published after this date (ISO 8601)"
    }
  }
}

find_similar

Find web pages similar to a given URL using semantic similarity.

{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "description": "URL to find similar pages for"
    },
    "numResults": {
      "type": "integer",
      "description": "Number of similar results to return"
    }
  }
}

get_contents

Get the full parsed content of specific URLs.

{
  "type": "object",
  "required": [
    "urls"
  ],
  "properties": {
    "urls": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "URLs to fetch and parse content from"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Exa (@exa-labs)
Репозиторий
https://github.com/exa-labs/exa-mcp-server
Лицензия
MIT
Версия
1.2.0
Звёзды
4,477
Последнее обновление
25 мая 2026 г.