From e8fcd7994768a83573e181b4a7996b567d677f94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Ko=C5=A1enina?= Date: Mon, 12 Jan 2026 10:16:40 +0100 Subject: [PATCH] DevRev MCP This PR adds the DevRev MCP server to the Cursor collection. The DevRev MCP server uses the Streamable HTTP transport protocol. Based on other MCP server entries, I have specified "transport": ["http"]. Please let me know if this is the correct approach. The DevRev MCP server supports OAuth. Do we need to provide a client ID as part of the configuration? In which cases is the domain field required? Relevant issue: #109 --- servers/devrev/icon.svg | 3 +++ servers/devrev/server.json | 13 +++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 servers/devrev/icon.svg create mode 100644 servers/devrev/server.json diff --git a/servers/devrev/icon.svg b/servers/devrev/icon.svg new file mode 100644 index 0000000..23d7876 --- /dev/null +++ b/servers/devrev/icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/servers/devrev/server.json b/servers/devrev/server.json new file mode 100644 index 0000000..abe9c80 --- /dev/null +++ b/servers/devrev/server.json @@ -0,0 +1,13 @@ +{ + "name": "DevRev", + "description": "The DevRev MCP server connects your IDE to DevRev's work management platform, enabling AI assistants to interact with your DevRev workspace directly from your development environment.", + "transport": [ + "http" + ], + "icon": "./icon.svg", + "oauth": true, + "config": { + "url": "https://api.devrev.ai/mcp/v1" + }, + "documentation": "https://devrev.ai/docs/product/remote-mcp" +} \ No newline at end of file