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

A3.6/5.0
Behavior3/5

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

The description adds the instruction to 'Include the conversation array with recent messages for reproduction,' which hints at the data being submitted. Annotations already signal non-read-only and idempotent behavior, and the description does not contradict these. However, it does not disclose other potential side effects or post-submission outcomes beyond what is implied.

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?

Two concise sentences with no redundancy. The first sentence states the purpose, and the second gives a key usage instruction. Every word earns its place.

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

Completeness3/5

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

For a relatively simple tool with three parameters and no output schema, the description covers basic purpose and one usage detail. However, it omits explanation of the required 'message' parameter and any information about what happens after submission (e.g., where the report goes), leaving gaps in completeness.

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 coverage is 0%, so the description carries full responsibility for explaining parameters. It only mentions the 'conversation array', leaving the required 'message' and optional 'context' parameters unexplained. This is insufficient for an agent to correctly populate all fields.

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 clearly states 'Report a bug, missing feature, or send feedback,' using a specific verb and resource. It unambiguously identifies the tool's function without ambiguity, distinguishing it from sibling tools that likely handle other tasks.

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?

Usage is implied through the purpose statement—users understand they should use this tool for reporting bugs or feedback—but there is no explicit 'use when' versus alternatives, nor any exclusions. Context is present but not elaborated beyond the core function.

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.9/5.0
Disambiguation3/5

The tools are mostly distinct in purpose: authenticate and connect handle credentials, marketplace handles discovery/execution, toolkit_info shows state, ecac_dctf_web_consultar does a specific query, report_bug and show_version are utility functions. However, connect and toolkit_info overlap in reporting connection status, and marketplace's invoke behavior might confuse with directly calling tools like ecac_dctf_web_consultar if not careful.

Naming Consistency3/5

The naming is inconsistent: most tools use lowercase snake_case or simple verbs (authenticate, connect, marketplace, report_bug, show_version, toolkit_info), but ecac_dctf_web_consultar uses a mixed pattern with underscores and a domain-specific name, breaking the convention. It's readable but not uniform.

Tool Count4/5

7 tools is reasonable for a combined MCP marketplace and specific query server. The count is not excessive, and each tool serves a distinct function, though some like report_bug and show_version are minor utilities.

Completeness4/5

The surface covers authentication, connection status, marketplace discovery/invocation, toolkit state, and a specific query tool. It lacks obvious operations like uninstall/subscribe are embedded in marketplace, and there's no tool for managing tokens directly (only via authenticate). Overall, the domain is covered adequately, though some marketplace operations are bundled into one mega-tool.