what is DevRev MCP server?
DevRev MCP server is a Model Context Protocol server designed for DevRev, enabling users to search and retrieve information using the DevRev APIs.
how to use DevRev MCP server?
To use the DevRev MCP server, you need to create an account on DevRev, import your data from existing sources, and generate an access token. Then, configure the server settings according to your operating system.
key features of DevRev MCP server?
- Search for information using the DevRev search API.
- Retrieve detailed information about DevRev issues or tickets using their IDs.
- Easy configuration for different operating systems.
use cases of DevRev MCP server?
- Integrating DevRev APIs into applications for data retrieval.
- Automating the process of searching for issues or tickets in DevRev.
- Enhancing customer support by quickly accessing relevant information.
FAQ from DevRev MCP server?
- How do I get the DevRev API key?
You can obtain the API key by signing up at DevRev and following the instructions to generate a personal access token.
- Is there a specific configuration for different operating systems?
Yes, the configuration varies for MacOS and Windows, and detailed instructions are provided in the documentation.
- What programming language is the DevRev MCP server built with?
The server is built using Python.
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
- Go to https://app.devrev.ai/signup and create an account.
- Import your data from your existing data sources like Salesforce, Zendesk while following the instructions here.
- 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
Published Servers Configuration
"mcpServers": {
"devrev": {
"command": "uvx",
"args": [
"devrev-mcp"
],
"env": {
"DEVREV_API_KEY": "YOUR_DEVREV_API_KEY"
}
}
}
Development/Unpublished Servers Configuration
"mcpServers": {
"devrev": {
"command": "uv",
"args": [
"--directory",
"Path to src/devrev_mcp directory",
"run",
"devrev-mcp"
],
"env": {
"DEVREV_API_KEY": "YOUR_DEVREV_API_KEY"
}
}
}