report_bug
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotentHint=true, readOnlyHint=false, destructiveHint=false. The description adds that the tool accepts a conversation for reproduction, which implies a non-destructive logging or reporting action. It does not contradict annotations. However, it does not disclose any specific side effects or response behavior, leaving some behavioral details unaddressed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and to the point, with two sentences. The first sentence announces the purpose, and the second provides a critical usage instruction. Every word is necessary, and it is front-loaded with the main action. There is no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (3 parameters, no output schema), the description is adequate but lacks details on return values or parameter format. For a feedback tool, it might be sufficient, but the description does not explain what happens after reporting (e.g., response, storage). It is minimally complete for a basic understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does 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 missing parameter details. It partially explains the 'conversation' parameter as needing recent messages for reproduction, but it does not describe 'context' or the expected format for 'message' (beyond a string). The 'conversation' is said to be a string with default '[]', but the description does not clarify its structure (e.g., JSON array). Thus, the description adds limited meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' It is specific about the resource (bug/feature/feedback) and the verb (report/send). It distinguishes itself from sibling tools which are largely RDStation-specific operations (e.g., rdstation_contacts_get) or authentication, making it unique as a general feedback mechanism.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for use: it handles bug reports, missing features, or feedback. It also gives a usage hint: 'Include the conversation array with recent messages for reproduction.' However, it does not explicitly state when not to use this tool or name alternative tools for other purposes, though the context (sibling tools are all different) implies distinct use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
The three rdstation_contacts_* tools and three rdstation_webhooks_* tools have identical descriptions listing the same set of actions, making them indistinguishable. An agent cannot determine which tool performs which action based on the descriptions alone.
Naming conventions are inconsistent: domain-specific tools use `rdstation_<noun>_<action>` (rdstation_contacts_get) but also `rdstation_<action>_<noun>` (rdstation_list_accounts), and some tools lack the domain prefix (authenticate, marketplace). The pattern varies across the set.
At 15 tools, the count is at the upper bound of reasonable scope. However, many tools are redundant (e.g., three tools for contacts actions) and could be consolidated, making the set feel heavier than necessary.
The RD Station domain covers contacts, webhooks, events, and accounts. However, contacts lack a delete action, and there is no tool to list contacts. The webhooks set is complete (create, list, delete) but missing an update. Minor gaps exist.