Back to MCP directory
publicPublicdnsLocal runtime

kpsunil97_devrev-mcp-server

DevRev的模型上下文协议服务器,用于通过DevRev API搜索和检索信息。

article

README

🚀 DevRev MCP 服务器

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

🚀 快速开始

借助 DevRev MCP 服务器,你可以使用以下工具进行信息的搜索和获取:

  • search:通过 DevRev 搜索 API,依据提供的查询内容和命名空间开展搜索。
  • get_object:利用对象的 ID 获取关于 DevRev 对象的全部信息。

📦 安装指南

获取 DevRev API 密钥

  1. 访问 https://app.devrev.ai/signup 并创建一个账户。
  2. 按照 https://devrev.ai/docs/import#available-sources 中的说明,从现有数据源(如 Salesforce、Zendesk)导入你的数据。
  3. 按照 https://developer.devrev.ai/public/about/authentication#personal-access-token-usage 中的说明生成访问令牌。

使用 Claude Desktop

  • MacOS 系统:配置文件路径为 ~/Library/Application\ 支持/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 目录",
      "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