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
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.
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 files are located at:
~/Library/Application\ Support/Claude/claude_desktop_config.json
%APPDATA%/Claude/claude_desktop_config.json
"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>kpsunil97/devrev-mcp-server
December 20, 2024
March 13, 2025
Python