MCP Server
Active
MIT
Cursor Delegate MCP Server
io.github.andreilungeanu/cursor-delegate-mcp
What is the Cursor Delegate MCP server?
Bridge AI coding hosts to cursor-agent over the Agent Client Protocol.
How to install Cursor Delegate
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": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"cursor-delegate-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Claude Code
claude mcp add cursor-delegate-mcp -- npx -y cursor-delegate-mcpRelated MCP servers
Codex Delegate
Active
Bridge AI coding hosts to the OpenAI Codex CLI for delegated implementation.
1
View repository →JavaScript
MIT