DevRev MCP server
About
Access DevRev's APIs to manage work items, parts, search, and user information.
Details
- Author
- devrev
- Downloads
- 195
- Categories
- Developer Tools, Project Management, Communication, Other
Jump to
- Search DevRev data using the search API with a query and namespace.
- Retrieve full details of an issue or ticket by ID.
- Integrates with Claude Desktop via the Model Context Protocol.
- Requires a DevRev API key for authentication.
- Supports both published and development server configurations.
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
DevRev MCP serverCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
First, obtain a DevRev API key from your DevRev account. Then add the server configuration to your Claude Desktop config file (claude_desktop_config.json). For published servers, use uvx devrev-mcp with the DEVREV_API_KEY environment variable; for development, use uv run devrev-mcp with the appropriate path.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"devrev mcp server": {
"devrev": {
"command": "uvx",
"args": [
"devrev-mcp"
],
"env": {
"DEVREV_API_KEY": ""
}
}
}
}
}
McpServers
{
"devrev": {
"command": "uvx",
"args": [
"devrev-mcp"
],
"env": {
"DEVREV_API_KEY": ""
}
}
}
DevRev MCP server
Overview
A Model Context Protocol server for DevRev. It is used to search and retrieve information using the DevRev APIs.
Tools
- search: Search for information using the DevRev search API with the provided query and namespace.
- get_object: Get all information about a DevRev issue or ticket using its ID.
Configuration
Get the DevRev API key
1. Go to https://app.devrev.ai/signup and create an account.
2. Import your data from your existing data sources like Salesforce, Zendesk while following the instructions here.
3. Generate an access token while following the instructions here.
Usage with Claude Desktop
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
<details>
<summary>Published Servers Configuration</summary>
"mcpServers": {
"devrev": {
"command": "uvx",
"args": [
"devrev-mcp"
],
"env": {
"DEVREV_API_KEY": "YOUR_DEVREV_API_KEY"
}
}
}
</details>
<details>
<summary>Development/Unpublished Servers Configuration</summary>
"mcpServers": {
"devrev": {
"command": "uv",
"args": [
"--directory",
"Path to src/devrev_mcp directory",
"run",
"devrev-mcp"
],
"env": {
"DEVREV_API_KEY": "YOUR_DEVREV_API_KEY"
}
}
}
</details>
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





