Skip to main content
Glama

report_bug

Idempotent

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.3/5.0
Behavior2/5

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

Annotations provide readOnlyHint=false and idempotentHint=true, but the description adds little behavioral context beyond the concept of sending/reporting. It does not explain what side effects occur, whether the report is stored, whether confirmation is given, or how retries might behave, despite the idempotentHint being somewhat surprising for a feedback/report tool.

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 two short sentences with no filler. It front-loads the purpose and then gives the key usage hint, making it easy to scan and act on.

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

Completeness2/5

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

For a tool with three parameters, no output schema, and zero schema description coverage, the description leaves major gaps: the purpose of message/context, the expected conversation format, and what the caller should expect after the call. The reproduction hint is useful, but not sufficient for confident invocation.

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

Parameters2/5

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, but it only explains the conversation parameter's role in reproduction. The required message parameter is not explained, and context is completely undocumented, leaving the agent to infer their meaning from parameter names alone.

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 states a clear verb-resource pair: reporting a bug, missing feature, or sending feedback. It is immediately distinguishable from sibling tools such as authenticate, marketplace, and search_tools, which serve unrelated purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

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

The description implies when to use it: when the user wants to report a bug, request a feature, or give feedback. It also gives a specific instruction to include recent messages for reproduction, but it does not explicitly discuss when not to use it or mention any alternative tool.

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

A3.5/5.0
Disambiguation2/5

marketplace and search_tools both cover catalog search, describe, and invoke, making their boundaries unclear. connect and toolkit_info also overlap on reporting connection status, so an agent could easily select the wrong tool for the same task.

Naming Consistency3/5

All names use lowercase snake_case, but the patterns vary: single-word verbs (authenticate, connect), a noun (marketplace), and compound nouns (toolkit_info). There is no consistent verb_noun convention, though the names remain reasonably readable.

Tool Count4/5

Seven tools is a reasonable size for an MCP platform-management server, and most tools cover distinct operational areas. However, marketplace and search_tools overlap significantly, so the count could be trimmed without losing functionality.

Completeness4/5

The set covers authentication, connection status, catalog search and execution, toolkit state, version info, and bug reporting, which supports the core platform workflows. The main weakness is that install/uninstall/billing operations are buried inside the marketplace tool description rather than exposed as first-class tools.