Cursor Delegate
Server Quality Checklist
Latest release: v2.0.0
- Disambiguation5/5
Each tool has a distinct, non-overlapping purpose: delegate for initiating/resuming tasks, cancel for stopping in-flight work, and doctor for diagnostic checks. No ambiguity between tools.
Naming Consistency5/5All three tool names are lowercase verbs (delegate, cancel, doctor), following a clean, consistent single-word verb pattern. Perfectly predictable.
Tool Count5/5With exactly three tools, the server is tightly scoped to its core workflow: delegate, cancel, and diagnose. Every tool earns its place and the count feels appropriate for the purpose.
Completeness5/5The tool set covers the full lifecycle of a delegation: starting/resuming (delegate), terminating (cancel), and troubleshooting setup (doctor). No obvious gaps for the stated domain.
Average 4.5/5 across 3 of 3 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 260 commits in the last 12 weeks
- Last stable release on
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
This repository includes a glama.json configuration file.
This server has been verified by its author.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already carry the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false, openWorldHint=false), so the description only needs to add context beyond that. It adds the operational trigger and the specific diagnostic scope, which is meaningful value on top of the structured data. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two terse sentences: the first front-loads the purpose and diagnostic scope, the second gives the trigger condition. Zero waste, efficient, and the critical information is placed first.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Complete for a diagnostic tool: purpose, scope, and trigger are all stated, the single parameter is fully documented in the schema, and annotations carry the safety profile. Minor omission is that the return/output format isn't characterized, but with no output schema and a simple diagnostic, this is negligible.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the single 'deep' parameter is fully documented in the schema, including the ACP handshake sequence and what it adds to output. The description text adds no parameter detail, but the schema already carries the full burden, so the baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb (diagnose) and resource (delegation setup) plus the exact scope of inspection: plugin version, MCP client capabilities, cursor-agent launcher resolution. This clearly distinguishes it from sibling tools delegate and cancel, and the title reinforces it with 'Diagnose Cursor delegation setup'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Gives an explicit trigger condition: 'Run when delegation fails or agent.found is false.' This tells the agent precisely when to invoke the tool. It does not explicitly state when not to use it or name alternatives, but the siblings (delegate, cancel) are semantically distinct operations that don't need exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true and idempotentHint=true, so the description's job is to add context beyond that. It does: it discloses the advisory/non-guaranteed nature, notes that a delegate result may still carry cancelRequested, and enumerates the full status space (cancelled, killed, not-running, not-found) including what killed means. No contradiction with the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
One focused paragraph that front-loads purpose before the caveat and status enumeration. Every clause carries information — the advisory note, the cancelRequested side effect, and four distinct statuses. It is slightly dense, but nothing is filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema, the description effectively documents return semantics by enumerating the four possible statuses and what each means. For a 2-parameter mutating tool, the behavioral guarantees, edge cases (not-running, not-found), and the force parameter are all covered. A minor gap is the lack of guidance on how long the 'short grace period' is for force.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 50%: 'force' is well-documented in the schema but 'sessionId' has no description there. The description compensates by naming sessionId as the identifier of the in-flight delegation, giving it purpose. It does not add formatting or provenance detail, but for a string id this is adequate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-resource pair — 'Best-effort cancel of an in-flight delegation by sessionId' — that names the operation, the target, and the key handle. It also distinguishes itself implicitly from the sibling 'delegate' (which creates the delegation that this tool cancels), so an agent can separate the two without opening schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description conveys when to use it (to cancel an in-flight delegation) and sets expectations up front with 'best-effort' and 'advisory'. The status list tells the caller what outcomes to anticipate. It does not explicitly name when-not-to-use or recommend an alternative, but against the sibling set (delegate creates, doctor diagnoses) the boundary is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Directly discloses the behavior that makes destructiveHint and openWorldHint true: 'Auto-approves every permission the agent requests, in any mode and anywhere on disk.' It also reveals the clarification interaction pattern (prose in result, resume with resumeSessionId) and that invalid values fail before the prompt while naming the accepted set. This adds genuine context far beyond the bare annotations and does not contradict them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Six sentences, each pulling weight: purpose, prohibition, safety warning, interaction contract, defaults policy, skill pointer. The most critical warning (auto-approve anywhere on disk) is front-loaded in the third sentence, not buried. No filler, no restatement of schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 9-parameter, 2-required, destructive, open-world tool with no output schema, this is remarkably complete. It covers safety, interaction protocol, defaults policy, per-parameter touch rules, and even the resolution of paths (relative paths resolve against workspace but are not limited to it) and error behavior (invalid effort values fail before the prompt, skips surface in protocolWarnings). Nothing an agent needs to call it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description earns a 4 by adding a cross-cutting policy the schema alone can't express — the 'touch nothing unless the user asks' rule that applies across fast, model, effort, and context — and by signaling which params are safe to pass only on explicit request. It doesn't need to restate field meanings since the schema already documents them fully.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Opens with a specific verb+resource: 'Delegate a coding task to cursor-agent over ACP.' It goes further and distinguishes itself from the naive alternative with 'Never shell out to cursor-agent — use this tool only,' so the agent cannot mistake its scope. Unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit when-to-use and when-not-to-use guidance: the prohibition on shelling out, the warning that it auto-approves every permission in any mode and anywhere on disk, and a clear defaults policy — 'Keep model, fast and effort at their defaults unless the user explicitly asks.' Multiple params get a 'only when the user asks' qualifier, which is exactly the guardrail an agent needs for a destructive, open-world tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andreilungeanu/cursor-delegate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server