devrev-mcp-server

This repository contains a Model Context Protocol (MCP) server for DevRev, enabling information search and retrieval using DevRev APIs. It utilizes tools like `search` and `get_object` and requires a DevRev

2
3

DevRev MCP Server

Overview

This repository contains a Model Context Protocol (MCP) server designed for DevRev, enabling information search and retrieval using DevRev APIs. It facilitates interaction with DevRev's data to enhance context awareness in applications.

Tools

  • search: Executes searches using the DevRev search API, filtering by query and namespace.
  • get_object: Retrieves comprehensive information about a specific DevRev object, identified by its unique ID.

Configuration

Get the DevRev API key

  1. Create a DevRev account at https://app.devrev.ai/signup.
  2. Import data from sources like Salesforce and Zendesk, following the instructions here.
  3. Generate a personal access token as described here.

Usage with Claude Desktop

Configuration files are located at:

  • MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • 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>

Repository

KP
kpsunil97

kpsunil97/devrev-mcp-server

Created

December 20, 2024

Updated

March 13, 2025

Language

Python

Category

Search & Knowledge