Install
$ agentstack add mcp-andreilungeanu-cursor-delegate-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Cursor Delegate MCP
Let Claude think. Let Cursor build.
[](https://www.npmjs.com/package/cursor-delegate-mcp) [](https://www.npmjs.com/package/cursor-delegate-mcp) [](https://nodejs.org) [](LICENSE)
An MCP server that lets Claude Code (or any MCP client) delegate coding tasks to Cursor's CLI agent — and get structured results back, not a wall of terminal text.
Why
Frontier models like Opus and Fable are brilliant orchestrators — great at understanding intent, planning, and reviewing. Cursor's Composer is a fast, cheap workhorse for the actual edits, with its own generous usage pool.
This bridge pairs them: the big brain writes the brief and reviews the diff; Cursor does the typing. Your Claude quota goes to thinking, not boilerplate.
How it works
You → Claude (Opus / Fable — plans & reviews)
│ MCP delegate tool
▼
cursor-agent (Composer 2.5 — implements)
│ edits your workspace
▼
Structured result: files changed, session id, plan
Delegation defaults to Cursor's Composer 2.5, which draws from the separate Auto + Composer usage pool — so implementation work doesn't eat into your API-model quota. Want a different model? Just say so: "delegate with Opus".
Three modes: agent (implement, default) · plan (draft a plan, review, resume to implement) · ask (read-only Q&A).
> Note: delegation auto-approves file writes in the target workspace — review the diff afterward, like any teammate's work.
Features
- 🤝 Perfect Claude Code integration — ships as a plugin with a skill, slash command, and hooks. Just say "delegate this to Cursor" and it happens.
- 💬 Answers Cursor's questions — when Cursor needs a clarification mid-run, the question surfaces in your client's normal prompt. No stalled sessions.
- 📦 Structured results — session id, files changed, stop reason, and plan payload. Claude knows exactly what happened and what to review.
- 📋 Plan mode — have Cursor draft a plan first, review it, then resume the same session to implement.
- 🔍 Ask mode — read-only Q&A over the codebase, zero file changes.
- 🩺 Built-in diagnostics — a
doctortool that tells you exactly what's missing if setup isn't right. - 🔌 Works everywhere MCP does — Claude Code, VS Code, Codex CLI, Kiro, Kilo Code, and more.
Quick start
Requirements: Node.js 22+ and cursor-agent logged in (cursor-agent login).
Claude Code (recommended)
/plugin marketplace add andreilungeanu/cursor-delegate-mcp
/plugin install cursor-delegate-mcp@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.
Claude writes the brief, Cursor grinds through the files, and Claude reviews the diff with you — that's the whole loop.
Any other MCP client
{
"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"]
}
}
}
Codex CLI — ~/.codex/config.toml
[mcp_servers.cursor-delegate-mcp]
command = "npx"
args = ["-y", "cursor-delegate-mcp"]
Kiro — ~/.kiro/settings/mcp.json
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": ["-y", "cursor-delegate-mcp"]
}
}
}
Kilo Code — ~/.config/kilo/kilo.jsonc
{
"mcp": {
"cursor-delegate-mcp": {
"type": "local",
"command": ["npx", "-y", "cursor-delegate-mcp"],
"enabled": true
}
}
}
Antigravity 2.0 — ~/.gemini/config/mcp_config.json
{
"mcpServers": {
"cursor-delegate-mcp": {
"command": "npx",
"args": ["-y", "cursor-delegate-mcp"]
}
}
}
Call the delegate tool with your task; run doctor if anything seems off.
License
MIT © Andrei Lungeanu
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: andreilungeanu
- Source: andreilungeanu/cursor-delegate-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.