Back to MCP directory
publicPublicdnsLocal runtime

exa-mcp

Exa搜索API的MCP服务器

article

README

🚀 Exa - MCP 服务器

Exa - MCP 服务器为 Exa 搜索 API 提供 MCP 服务。该项目由 ChatWise 赞助,ChatWise 是一款功能全面的 LLM 聊天机器人,具备一流的 MCP 支持。

🚀 快速开始

你可以按照以下步骤使用 Exa - MCP 服务器:

  1. 获取你的 API 密钥,点击 此处 进行获取。

📦 安装指南

手动配置

你可以通过以下命令启动服务器,同时需要设置相应的环境变量。

标准 I/O 服务器

# 标准 I/O 服务器
npx -y exa-mcp

基于 SSE 的服务器

# 基于 SSE 的服务器
npx -y exa-mcp --sse

环境变量设置

EXA_API_KEY=<你的 API 密钥>

JSON 配置示例

如果你希望使用 JSON 进行配置,可以参考以下示例:

{
  "mcpServers": {
    "exa": {
      "command": "npx",
      "args": ["-y", "exa-mcp"],
      "env": {
        "EXA_API_KEY": "<你的 API 密钥>"
      }
    }
  }
}

📄 许可证

本项目采用 MIT 协议。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client