Back to MCP directory
publicPublicdnsLocal runtime

devrev-mcp-server

DevRev的MCP服务器,用于通过API搜索和检索信息

article

README

🚀 DevRev MCP 服务器

DevRev MCP 服务器是一个专门为 DevRev 设计的模型上下文协议(MCP)服务器,它能够借助 DevRev API 高效地搜索和检索信息,为用户提供便捷的信息获取途径。

✨ 主要特性

  • search 工具:可利用提供的查询和命名空间,通过 DevRev 搜索 API 开展搜索工作。
  • get_object 工具:能够依据对象 ID 获取 DevRev 对象的全部信息。

📦 安装指南

获取 DevRev API 密钥

  1. 访问 DevRev 注册页面,创建一个账户。
  2. 按照 此说明 导入您的数据源,例如 Salesforce、Zendesk 等。
  3. 依据 此说明 生成访问令牌。

与 Claude Desktop 集成使用

  • MacOS 系统:配置文件路径为 ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • Windows 系统:配置文件路径为 %APPDATA%/Claude/claude_desktop_config.json%
已发布服务器配置
"mcpServers": {
  "devrev": {
    "command": "uvx",
    "args": [
      "devrev-mcp"
    ],
    "env": {
      "DEVREV_API_KEY": "YOUR_DEVREV_API_KEY"
    }
  }
}
开发/未发布服务器配置
"mcpServers": {
  "devrev": {
    "command": "uv",  
    "args": [
      "--directory",
      "Path to src/devrev_mcp directory",
      "run",
      "devrev-mcp"
    ],
    "env": {
      "DEVREV_API_KEY": "YOUR_DEVREV_API_KEY"
    }
  }
}
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