AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Cursor Delegate Mcp

mcp-andreilungeanu-cursor-delegate-mcp · by andreilungeanu

Use Cursor from inside Claude Code. Delegate a coding task to Cursor's agent, get structured results back, and let Claude stay in the driver's seat.

No reviews yet
0 installs
43 views
0.0% view→install

Install

$ agentstack add mcp-andreilungeanu-cursor-delegate-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-andreilungeanu-cursor-delegate-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Cursor Delegate Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 doctor tool 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.