npm cursor-delegate-mcpstdioMITupdated 18d ago
Stop burning your frontier agent's limits on boilerplate.
What can you do with Cursor Delegate?
Cursor Delegate
Stop burning your frontier agent's limits on boilerplate.
Delegate edits to Cursor's CLI agent โ your agent writes the brief and reviews the diff.
Use your best coding agent where its judgment matters most: understanding the task, shaping the plan, and reviewing the result.
Cursor Delegate is the MCP bridge that lets Claude Code, ChatGPT/Codex, Copilot โ or any MCP client โ hand implementation to Cursor's CLI agent, then get a clean, structured result back for review.

๐ง Frontier quality, kept
Your assistant does what frontier models are for: understands the task, writes a precise brief, reviews the finished diff. Composer 2.5 runs the implementation loop under that brief. The bundled skill puts the review step in the loop โ the agent that scoped the work reads the changed files back before reporting.
โก Done faster
Composer 2.5 is built for throughput on multi-file edits. The whole delegation is one call โ brief in, result out โ so you review a finished diff instead of babysitting edits landing file by file.
๐ Your limits stop being the bottleneck
Composer and Grok run on their own usage allowance on every Cursor plan โ separate from the API-priced main quota, and generous enough that most people never reach the ceiling. Your Claude or Codex subscription spends tokens only on the brief and the review, so the 5-hour window and weekly limits go a lot further. Paying per token on API? That grind moves onto Cursor capacity you already have.


Features
- ๐ค Native plugins โ install into Claude Code, ChatGPT/Codex, or GitHub Copilot CLI and just say "delegate this to Cursor". The shared skill teaches your agent how to delegate well.
- ๐ฌ No stalled runs โ if Cursor needs to clarify, it ends the turn and returns the question as a normal result. Your agent reads it and answers by resuming the same session โ nothing blocks on a modal waiting for input.
- ๐ฆ Clean, named results โ final answer, changed files, session id, and the plan, returned as one compact JSON payload. Nothing to scrape.
- ๐ Plan first โ
planmode: Cursor drafts a plan, you review it, then the same session implements it. - ๐ Ask anything โ
askmode: Q&A over your codebase. - ๐ฉบ Self-diagnosing โ a
doctortool that tells you exactly what's missing if setup isn't right. - ๐ Portable โ plain stdio MCP, so it runs anywhere: VS Code, JetBrains, Windsurf, Visual Studio, and more.
plan and ask are instructions to the agent, and workspace is its working directory โ Security and the delegate reference spell out what the bridge enforces and what it reports back.
Install
You need Node.js 20+ and the Cursor CLI, logged in (cursor-agent login).
Claude Code
/plugin marketplace add andreilungeanu/cursor-delegate-mcp
/plugin install cursor-delegate@cursor-delegate-mcp
Then just ask:
Delegate to Cursor: migrate src/api from callbacks to async/await and update the tests, then walk me through what changed.
That's the whole loop โ Claude writes the brief, Cursor grinds through the files, Claude walks you through the diff.
ChatGPT desktop / Codex
codex plugin marketplace add andreilungeanu/cursor-delegate-mcp
codex plugin add cursor-delegate@cursor-delegate-mcp
GitHub Copilot CLI
copilot plugin install andreilungeanu/cursor-delegate-mcp
Any other MCP client
{
"mcpServers": {
"cursor-delegate": {
"command": "npx",
"args": ["-y", "cursor-delegate-mcp"]
}
}
}
Client-specific config locations
Or add it manually:
{
"servers": {
"cursor-delegate": {
"type": "stdio",
"command": "npx",
"args": ["-y", "cursor-delegate-mcp"]
}
}
}
Or run Chat: Install Plugin From Source with this repository's URL.
Under Settings โ Tools โ AI Assistant โ Model Context Protocol (MCP), add a server with command npx and arguments -y cursor-delegate-mcp.
{
"mcpServers": {
"cursor-delegate": {
"command": "npx",
"args": ["-y", "cursor-delegate-mcp"]
}
}
}
Heads-up: Cascade caps you at 100 tools across all servers.
{
"servers": {
"cursor-delegate": {
"type": "stdio",
"command": "npx",
"args": ["-y", "cursor-delegate-mcp"]
}
}
}
Requires 17.14+. Note the top-level key is servers, not mcpServers.
Use the portable definition above in the client's own MCP config file.
License
MIT ยฉ Andrei Lungeanu
Technical reference ยท Security ยท Privacy ยท Terms ยท Changelog
Install
Add Cursor Delegate to your client. Pick the one you use.
claude mcp add cursor-delegate-mcp -- npx -y cursor-delegate-mcpcodex mcp add cursor-delegate-mcp -- npx -y cursor-delegate-mcpamp mcp add cursor-delegate-mcp -- npx -y cursor-delegate-mcp{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"cursor-delegate-mcp","command":"npx","args":["-y","cursor-delegate-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"cursor-delegate-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"cursor-delegate-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"cursor-delegate-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y cursor-delegate-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 10 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 2.0.0Latest | Aug 21, 2026 |
| 1.22.0 | Aug 13, 2026 |
| 1.21.0 | Aug 13, 2026 |
| 1.20.0 | Aug 13, 2026 |
| 1.19.0 | Aug 12, 2026 |
| 1.18.1 | Aug 9, 2026 |
| 1.18.0 | Aug 7, 2026 |