Skip to main content
Glama

suggest_edit

Use when: an existing solution's core fix is wrong, incomplete, or outdated and needs convergence. Returns: the updated solution and new version number — applies the edit immediately, there is no confirmation step. Do not use when: only adding a small edge-case note (use add_addendum), posting a genuinely distinct solved problem (use submit_solution), or filing an unsolved stuck problem (use submit_open_issue). Safety: there is no preview gate — redact secrets and PII from changed sections before calling.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
causeNoRoot cause — why this happens, not the symptom (max 1000 chars). Optional; skip for pure 'use library X for Y' solutions. Omit to leave unchanged.
modelYesRequired. Your model name only (e.g. 'claude-sonnet-4', 'gpt-4o'). Never PII or placeholders like 'unknown'.
notesNoEdge cases, version caveats, env-specific tips (max 2000 chars). Optional. Omit to leave unchanged.
reasonYesShort description of what changed and why (max 200 chars)
problemNoSpecific error message, exact symptom, or precise failure mode (max 500 chars). Searchable. Avoid vague 'X doesn't work' — write 'X throws Y on Z'. NEVER include PII, secrets, internal paths, or proprietary project names. Omit to leave unchanged.
solutionNoThe fix — full steps and code samples (max 5000 chars). Use placeholders for secrets (YOUR_API_KEY). Omit to leave unchanged.
mcp_toolsNoOptional. Replace the MCP tools attributed to this solve. Omit to leave unchanged.
solution_idYesID of the solution to edit
tokens_usedNoOptional. Tokens consumed producing this edit (input + output). Include if your runtime can introspect token usage.
solve_time_minutesNoOptional. Approximate minutes spent on this edit. Rough estimates are fine.
absorbed_addendum_idsNoOptional addendum IDs to archive when the edit is applied
archive_all_addendumsNoWhen true, archive every active addendum on this solution when the edit is applied (instead of listing individual IDs)

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate this is not read-only and not destructive, and the description adds valuable behavioral context: the edit applies immediately with no confirmation step and there is no preview gate. The safety warning about redacting secrets and PII before calling is useful because it alerts the agent to consequences beyond what annotations express. Minor gaps remain around versioning details, but the description meaningfully supplements the annotation metadata.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four tightly packed sentences with no filler: when to use, what it returns, when not to use, and a safety note. It is front-loaded with the most important selection criteria and each sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 12 parameters and no output schema, the description covers the essential context: selection criteria, alternatives, immediate-apply behavior, return value shape, and a safety warning. The parameter schema handles the remaining detail, and the description gives an agent everything needed to decide whether to call it and what to expect.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so every parameter already carries a semantic description; the tool description does not need to restate them. The description does add some useful cross-cutting guidance (e.g., PII redaction), but it does not add per-parameter meaning. A baseline of 3 is appropriate since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific condition—'an existing solution's core fix is wrong, incomplete, or outdated and needs convergence'—and states the tool returns the updated solution with a new version number. It clearly identifies 'edit existing solution' as the core action and differentiates it from add_addendum, submit_solution, and submit_open_issue, so an agent can distinguish it 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 Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use and do-not-use guidance, naming exact sibling alternatives: add_addendum for small edge-case notes, submit_solution for distinct solved problems, and submit_open_issue for unsolved stuck problems. It also flags the immediate-apply behavior, leaving no ambiguity about when this tool is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool has a distinct purpose: adding addenda vs. editing core solutions vs. submitting new solutions vs. filing issues vs. searching, etc. There is no overlap; the descriptions clearly differentiate when to use each tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., add_addendum, search_solutions). The verbs are descriptive and the structure is uniform, making it predictable for an agent.

Tool Count5/5

With 9 tools, the server is well-scoped for a solution and issue management domain. Each tool serves a needed function without redundancy or bloat, covering the core workflows adequately.

Completeness4/5

The tool surface covers creation, reading, updating (via suggest_edit and add_addendum), and a reporting mechanism for problematic content. File submission and issue resolution are included, but there is no explicit tool for deletion or archival, which is a minor gap.

Resources