- Explore MCP Servers
- devrev
DevRev
What is DevRev
The DevRev MCP server is a Model Context Protocol server designed specifically for interacting with DevRev’s API. Its primary function is to facilitate searching and retrieving information within the DevRev ecosystem.
Use cases
It allows users to search for specific information in their DevRev account and retrieve detailed data about various objects stored within the platform, enhancing data accessibility and management for users.
How to use
To utilize the DevRev MCP server, users must first acquire a DevRev API key by creating an account on the DevRev website and importing their existing data. Following this, users can configure their environment to initiate and run the server with appropriate commands and environment variables.
Key features
Key features of the DevRev MCP server include the ability to perform searches via the DevRev search API and retrieve full object details using unique object IDs, streamlining users’ interactions with their data.
Where to use
The DevRev MCP server can be used within development environments or applications that require integration with the DevRev API, allowing developers and users to create data-driven solutions leveraging the capabilities of DevRev.
Overview
What is DevRev
The DevRev MCP server is a Model Context Protocol server designed specifically for interacting with DevRev’s API. Its primary function is to facilitate searching and retrieving information within the DevRev ecosystem.
Use cases
It allows users to search for specific information in their DevRev account and retrieve detailed data about various objects stored within the platform, enhancing data accessibility and management for users.
How to use
To utilize the DevRev MCP server, users must first acquire a DevRev API key by creating an account on the DevRev website and importing their existing data. Following this, users can configure their environment to initiate and run the server with appropriate commands and environment variables.
Key features
Key features of the DevRev MCP server include the ability to perform searches via the DevRev search API and retrieve full object details using unique object IDs, streamlining users’ interactions with their data.
Where to use
The DevRev MCP server can be used within development environments or applications that require integration with the DevRev API, allowing developers and users to create data-driven solutions leveraging the capabilities of DevRev.
Content
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
- 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" } } }