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?
The annotations (readOnlyHint=false, idempotentHint=true, destructiveHint=false) already cover safety and side-effect behavior. The description does not contradict these annotations and adds no new behavioral details beyond the purpose, so the baseline credit applies.
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 two sentences, direct, and free of redundancy. It efficiently conveys the purpose and a key usage hint without any 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?
For a tool with three parameters, the description only hints at two (message and conversation) and omits context entirely. There is no mention of expected output or side effects beyond annotations. This is sufficient for basic use but lacks detail about parameter formats and edge cases.
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?
The description mentions 'conversation array' and implies message content, but does not clarify that conversation is a string (though it appears as a string in the schema) or explain the 'context' parameter at all. This adds some meaning but leaves ambiguity and incomplete coverage.
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: to report a bug, missing feature, or send feedback. It uses a specific verb (report) and resource (bug/feature/feedback), and clearly distinguishes from sibling tools like authenticate, connect, or search_tools.
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?
It provides a concrete usage hint: 'Include the conversation array with recent messages for reproduction.' This tells the agent when to use it (when reporting issues with context) and what to include. It could be more explicit about when not to use alternatives, but there are no competing reporting tools.
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 set has major overlap: `marketplace` and `search_tools` both offer search/describe/invoke catalog actions, making it unclear which to call. `report_bug` is also called out as a capability inside `marketplace`, blurring whether that tool is the action or the top-level one.
All names are lowercase with underscores, but they mix verb-oriented names (`authenticate`, `connect`, `report_bug`) with noun-oriented names (`marketplace`, `search_tools`) and no consistent verb_noun pattern. `show_version` and `toolkit_info` are similarly status-like but follow different naming styles.
Seven tools is within a reasonable range and the count itself is not problematic. However, the `marketplace` tool is overloaded with many sub-capabilities and `search_tools` duplicates part of it, so the effective scope feels less clean than the raw count suggests.
The main workflows are covered: authentication, connection status, catalog search, account/toolkit state, and bug reporting. Missing pieces like an obvious way to uninstall/disconnect or list callable tools are hidden inside `marketplace`, but these are workable gaps rather than fatal ones.