P

devrev-mcp-server

Created Oct 19, 2025 by kpsunil97

Language:

Python

Stars:

2

Forks:

5

README

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"
      }
    }
  }
Last updated: Oct 19, 2025

Publisher info

kpsunil97's avatar

kpsunil97

4
followers
1
following
2
repos

More MCP servers built with Python

Stable Diffusion WebUI

Stable Diffusion web UI

By AUTOMATIC1111 160.1K
Transformers

🤗 Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models, for both inference and training.

By huggingface 155.5K
PyTorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

By pytorch 96.8K