MCP ExplorerExplorer

DevRev

@kpsunil97on 12 days ago
2 MIT
FreeCommunity
Knowledge Base
#devrev#server#search
An MCP server to integrate with DevRev APIs to search through your DevRev Knowledge Graph where objects can be imported from diff. sources listed [here](https://devrev.ai/docs/import#available-sources).

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

  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

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"
    }
  }
}

Tools

search
Search DevRev using the provided query
get_object
Get all information about a DevRev object using its ID

Comments