DevRev MCP server

by MCP-Mirror

272 downloads
Not rated
GitHub

About

A Model Context Protocol server for DevRev that enables searching and retrieving information from DevRev using its APIs.

Details

Author
MCP-Mirror
Downloads
272
Categories
Other

- Search DevRev data using the search tool
- Retrieve full details of a DevRev object by ID with get_object
- Integrates with Claude Desktop via the MCP protocol
- Supports both published (uvx) and development (uv) run modes
- Uses a personal access token for authentication
- Works with data imported from Salesforce, Zendesk, and other sources

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:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name DevRev MCP server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Generate a DevRev API key from your DevRev account, then configure the server in Claude Desktop by adding a devrev entry under mcpServers in the configuration file, setting the DEVREV_API_KEY environment variable.

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 object 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>
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.