PluginBench
MCP Server
Active
MIT

devmcp MCP Server

io.github.rudranaresh0201/devmcp

What is the devmcp MCP server?

Git/CI MCP server with the full protocol surface (tools, resources, prompts, roots, sampling).

How to install devmcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "devmcp": {
      "command": "uvx",
      "args": [
        "devmcp-server",
        "--repo-path"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "devmcp": {
      "command": "uvx",
      "args": [
        "devmcp-server",
        "--repo-path"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "devmcp": {
      "command": "uvx",
      "args": [
        "devmcp-server",
        "--repo-path"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "devmcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "devmcp-server",
        "--repo-path"
      ]
    }
  }
}
Claude Code
claude mcp add devmcp -- uvx devmcp-server --repo-path

Related MCP servers

verimcp

Active

Transparent MCP proxy that independently re-verifies tool-call claims before the Host trusts them.

1
Python
MIT
View repository →