cursor-relay-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool targets a distinct aspect of the run lifecycle: authorization, starting/reply runs, querying state, waiting, cancelling, listing, reading events, checking config, and discovering models. Even the similar start_run and reply_run are clearly separated by their purpose and description.
Naming Consistency4/5Most tools follow a clear verb_noun pattern (authorize_workspace, start_run, cancel_run, list_runs, read_events, list_models). 'doctor' breaks the pattern, but it's a single minor deviation; the overall style is consistent.
Tool Count5/5Ten tools is appropriate for a run-relay server; each tool has a clear role and the set covers the core workflow without unnecessary bloat.
Completeness4/5The tools cover the full run lifecycle: create/reply (start_run, reply_run), read (get_run, list_runs, read_events), wait/cancel, plus prerequisite discovery (list_models) and diagnostics (doctor). The only minor gap is that events have a quantity limit with no pagination tool, but that's a practical constraint.
Average 3.4/5 across 10 of 10 tools scored. Lowest: 2.7/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 7 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
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.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
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
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true and idempotentHint=true. The description's note about 'stable results on repeated cancellation' merely restates the idempotency hint without adding new behavioral context, such as what happens to the run, side effects, or permissions required. It adds no value beyond 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?
The description is a single, concise sentence with no fluff. It states the core action and the idempotency property efficiently. The structure is front-loaded with the primary purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (one parameter, no output schema), the description is minimal. It omits key contextual details like the effect on the run lifecycle (e.g., will it stop emitting events?), whether cancellation is reversible, or any return value. An agent would have to infer behavior from the annotations alone, making the description insufficient for full understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the parameter 'relayRunId' is not documented in the schema, and the description does not explain it. Although the name is somewhat self-explanatory, the description fails to compensate for the lack of schema documentation, providing no clarification on its format, purpose, or expected values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'cancel a still-running Cursor SDK run', specifying the verb (cancel) and resource (run). It is distinct from sibling tools like start_run, get_run, etc., though it does not explicitly name alternatives. The purpose is unambiguous and sufficiently specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for runs that are still executing ('仍在执行'), but it provides no explicit guidance on when to use it versus alternatives like wait_run or how it relates to other lifecycle operations. No exclusions or conditions are given beyond the implicit 'still running' state.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the increasing-order behavior and the fact that the number of events is capped, which goes beyond annotations. However, it does not disclose whether reading consumes events, how pagination works, or the exact nature of the persisted stream.
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?
The description is a single concise sentence with no filler. It front-loads the action and the ordering, which is efficient. However, it is under-specified, so conciseness comes at the cost of completeness, but for what it says, there is zero waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness1/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With three parameters, no parameter descriptions in the schema, and no output schema, this tool requires more context. The description omits critical usage details: how to obtain relayRunId, the meaning and effect of afterSequence, how the limit is applied, and what the returned events look like. It is far from complete for an agent to call correctly without additional context or trial-and-error.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the three parameters (limit, relayRunId, afterSequence). It fails to explain any of them. The only hint is 'events have a limit,' which loosely relates to the limit parameter but is not explicit. No mention of what relayRunId identifies or how afterSequence controls incremental reading.
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 clearly states the action (read), the resource (persisted Cursor SDK stream events), and the ordering (in increasing sequence number). This is specific and distinct from the sibling tools like get_run (run state) or list_runs (list of runs), so an agent can tell it apart.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention that it should be used after starting a run or polling for streamed events, nor does it exclude cases where get_run or wait_run would be more appropriate. No alternatives are referenced.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the description's role is to add behavior beyond that. It does add the polling loop requirement (caller must continue polling if terminal=false), which is useful. However, it does not explain what 'terminal' refers to or what happens on timeout, leaving some ambiguity. This is a moderate addition given the annotation coverage.
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?
The description is a single, dense sentence in Chinese with no wasted words. It front-loads the maximum wait time and then states the polling condition. While brief, it is efficient and to the point, though it could benefit from a bit more structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no output schema and limited annotations, the description needs to explain the interaction flow. It mentions the 'terminal=false' condition but does not define what terminal is, how the caller receives it, or what the return value looks like. It also does not clarify the role of relayRunId in identifying the run. This is incomplete for a polling tool that an agent is expected to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter meaning, but it mentions no parameters at all. The schema only provides basic types and constraints (e.g., waitMs is an integer 0-30000), but the description does not explain the purpose of waitMs or relayRunId or how they affect behavior. This is a significant gap for a 2-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool waits up to 30 seconds, making the primary action clear. However, it does not differentiate from sibling tools like get_run, which could also be used for polling run status. The 'wait' verb is specific, but the description lacks explicit resource context beyond the run-related name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions a polling requirement ('mustCallAgain=true') but does not state when to choose this over get_run or other siblings, nor any exclusions. This leaves the selection decision to the agent without support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so safety is covered. The description adds the auto-reconnect behavior after process restart, which is useful context not captured by annotations. However, it doesn't disclose error behavior (e.g., what if the run doesn't exist) or whether the state includes partial output.
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?
A single, front-loaded sentence that states purpose and a key behavioral detail. It is concise and well-structured, with no superfluous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with one parameter and strong annotations, the description is adequate but not complete. It lacks details about the return value (e.g., what 'current state' contains), error scenarios, or whether it paginates. The auto-reconnect note adds some context, but more would be needed for an agent to anticipate behavior fully.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0% (no parameter descriptions). The sole parameter 'relayRunId' is not explained in the description; the name hints at a run identifier but the description doesn't elaborate on format, origin, or relationship to start_run. The description does not compensate for the missing schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('get current state') and the specific resource (a persistent run). It distinguishes from siblings like list_runs (which lists all runs) and wait_run (which waits), making its purpose clear, though it doesn't explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, when to prefer it over list_runs or wait_run, or any exclusions. The description implies usage for reading run state but leaves selection to the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
注释已声明readOnlyHint=true和destructiveHint=false,覆盖了安全性。描述额外提到排序方式(创建时间倒序),这是注释未提供的。但未提及返回格式、分页或任何限制,这些对于此类工具是常见的。由于注释已提供基本安全信息,描述本身无需重复,但补充的价值有限。
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?
描述仅有一句话,简洁明了,没有任何冗余内容。它直接陈述了核心功能和排序方式,结构清晰。虽然省略了部分细节,但就所包含的信息而言,做到了精炼。
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
该工具参数简单(单可选limit),注释齐全,且无输出schema要求。描述提供了排序行为,但未提及如何设置limit或默认行为。对于这样一个基本工具,描述基本足够,但缺少参数使用说明使上下文略有缺口。
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
输入schema中只有一个可选参数limit,带有最小/最大约束,但schema描述覆盖率为0%。描述完全未提及limit参数的含义或用法,因此代理必须自行推断。虽然'limit'直观代表数量限制,但描述未明确说明,使得参数语义不清晰。
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
描述明确说明了工具的功能:按创建时间倒序列出运行记录。动词'列出'和资源'运行'清晰,且排序方式提供了具体行为。虽然未与其他兄弟工具明确区分,但该描述足以让代理理解基本用途。
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
描述未提供任何关于何时使用该工具与替代工具(如get_run、cancel_run)的明确指导。代理无法从描述中得知适用的场景或与其他列表类工具的区别,仅能通过名称推断。
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true, openWorldHint=true, and idempotentHint=true, so the description is not required to repeat those. It adds context about retaining the same agentId, which is useful for understanding continuity, but does not elaborate on side effects, authentication requirements, or potential risks beyond what annotations imply. It does not contradict 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?
The description is a single, concise sentence that front-loads the core purpose without unnecessary detail. It is appropriately sized for what it states, though it lacks any structured breakdown of use cases or parameters, preventing a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (8 parameters, nested objects, no output schema) and the description's brevity, the tool is under-documented. It omits crucial operational details such as return format, error conditions, parameter semantics, and any preconditions beyond 'ended session.' Annotations cover safety, but the description fails to provide enough context for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description provides no information about any of the 8 parameters, including required ones like parentRunId, task, and idempotencyKey. With no schema hints and no description compensation, an agent cannot infer the purpose or format of these parameters, making this a critical gap.
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 clearly states the tool's action ('initiate a follow-up run') and its scoping conditions ('in an ended Cursor Agent session', 'retain the same agentId'), which distinguishes it from sibling tools like start_run that likely start new sessions. The verb and resource are explicit and specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly indicates when to use this tool (for ended sessions) but does not explicitly contrast it with alternatives or state when not to use it. It neither names sibling tools nor provides exclusion criteria, leaving some inference required for an agent to choose between this and start_run or other run-related tools.
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 indicate destructive and open-world behavior, so the description adds value by specifying the default 'read-only' permission, the persistent nature of the run, and the explicit requirement to choose a model and idempotency key. This extra context helps an agent understand the tool's default behavior and mandatory inputs beyond what annotations alone provide.
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?
The description is extremely concise: two short sentences in Chinese. It front-loads the purpose first, then adds key constraints (default read-only, explicit model/idempotency key). Every word earns its place with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 8 parameters, nested objects, and no output schema, the description covers the core behavior and critical requirements but leaves gaps. It does not mention prerequisites like workspace authorization (sibling `authorize_workspace`) or the `workspaceApprovalToken` parameter, nor what the return value is after starting a run. The description is adequate for a basic understanding but incomplete for a complex tool with multiple security and permission checks.
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 0%, so the description must compensate. It does address several parameters: 'workspace' (allowed local workspace), 'model' (must explicitly choose), 'idempotencyKey' (must explicitly choose), and 'permission' (default read-only). However, it leaves `task`, `timeoutMs`, `workspaceApprovalToken`, and `confirmedDangerousPermission` unexplained. The partial coverage adds meaning for some params but not all, so a 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?
The description clearly states the tool's purpose: 'start a persistent Cursor Agent run in an allowed local workspace.' It uses a specific verb and resource, and the distinction from siblings (get_run, cancel_run, wait_run) is implicit through the action of starting a new run. It also adds scope ('allowed local workspace') and clarifies the default read-only nature, making it unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (to start a run) but does not explicitly mention alternatives or when not to use it. It does not reference sibling tools like `authorize_workspace` as a prerequisite or `reply_run` for follow-up interactions. There is no guidance on choosing between this and similar tools, so the usage context is only implied.
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?
The description adds valuable behavioral context beyond annotations: the authorization is five-minute valid, one-time, read-only, and does not grant write or dangerous permissions. Annotations are all false and provide no details. This disclosure helps an agent understand the tool's side effects and limitations. No contradiction with annotations since the read-only refers to the granted permissions, not the tool's own operation.
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?
The description is a concise two-sentence structure that front-loads the usage condition, then explains the action and constraints. Every word earns its place; there is zero fluff. It is highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 4 parameters and 0% schema coverage, the description should explain each parameter and edge cases. It covers the core purpose and constraints, but omits details like what constitutes a valid workspace, task description, and the behavior on idempotency key reuse. It is adequate but not thorough for a tool with such sparse schema annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter explanations. However, it only hints at 'precise task' and 'idempotency key' without defining what each parameter means, their formats, or constraints. The 'permission' const is read-only, which aligns with the description, but the other three parameters lack explicit semantic detail. This is a significant gap.
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 states a specific verb ('签发', issue) and resource (workspace authorization), and clearly delineates the tool's function: issuing a temporary, one-time, read-only authorization for a precise task. It also gives the exact condition for invocation, distinguishing it from sibling run-management tools without needing to name them.
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?
It explicitly states when to call: only when the user explicitly requests in the current conversation to use that workspace. This is a strong conditional. However, it does not mention any alternative tools or when not to use it, but given the siblings are about runs, the context is sufficient. The explicit trigger condition warrants a 4.
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 readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds valuable behavioral context by specifying the exact items checked (config, auth, persistence) and explicitly stating it does not invoke the Cursor model, which goes beyond the annotation hints.
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?
The description is a single, well-structured sentence with no extraneous words. It front-loads the core purpose and includes an explicit exclusion, making it concise and highly scannable for an agent.
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?
For a parameterless, read-only diagnostic tool, the description covers purpose, scope, and the explicit non-action. It lacks detail on the output format, but given the simple nature and no output schema, this is a minor gap. The description is sufficiently complete for an agent to decide when to invoke it.
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?
The tool has zero parameters, so the baseline is 4. The description provides context on what the tool inspects without needing to explain parameters, which is appropriate for this parameterless diagnostic tool.
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 clearly states the tool checks Cursor Relay configuration, authentication, and persistence directory, and explicitly notes it does not call the Cursor model. This distinguishes it from sibling run-management tools that interact with models, providing a specific verb and resource scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies a diagnostic role by listing what it checks and what it avoids, but it does not explicitly state when to use this tool versus alternatives. It lacks guidance on pre-flight checks or when to prefer it over other operations, leaving usage context to inference.
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 cover readOnly, idempotent, and non-destructive hints. The description adds context about using the current account and the ordering requirement relative to start_run, which is useful behavioral information beyond the annotations. No contradictions.
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?
The description is a single, dense sentence that front-loads the purpose and usage. Every word earns its place; there is no filler or repetition.
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?
For a simple, zero-parameter, read-only listing tool, the description adequately specifies what it returns (models, aliases, parameters) and when to call it. With no output schema, it does not explain return structure in detail, but the listed items suffice for an agent to understand the outcome.
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?
The tool has zero parameters, so the baseline is 4. The description correctly implies no inputs are needed; it adds no parameter-specific information because there are none.
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 clearly states a specific action ('discover') on a specific resource ('available models, aliases, and parameters') from the current Cursor account. It also distinguishes itself from siblings by explicitly referencing start_run, making the tool's role unambiguous.
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 gives explicit timing guidance ('should be called before start_run'), establishing when to use it. It does not mention when not to use it or alternatives, but the context is clear and the directive is direct.
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/tonytanglab/cursor-relay-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server