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 declare readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description adds no additional behavioral details about side effects or response behavior beyond noting the need for the conversation array for reproduction. It is consistent with annotations, but does not go beyond them.
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 short sentences, immediately stating the purpose and key requirement for the conversation array. No unnecessary words.
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 simple tool with only three parameters and no output schema, the description covers the core purpose and a key usage instruction. However, it lacks guidance on expected outcomes, authentication prerequisites (given the sibling 'authenticate'), or clarification of the 'context' parameter. Overall adequate but with minor gaps.
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 schema has no descriptions, and the description only explains the 'conversation' parameter ('Include the conversation array with recent messages for reproduction'). The required 'message' parameter and the 'context' parameter are not elaborated, leaving their semantics to inference. Thus some compensation is provided, but incompletely.
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 explicitly states the tool's function: 'Report a bug, missing feature, or send feedback.' This clearly identifies the verb and resource, and distinguishes it from sibling tools like authenticate or marketplace.
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 does not explicitly discuss when to use this tool versus alternatives. While the purpose implies use for reporting issues, there is no direct comparison or exclusion of other tools. The instruction to include the conversation array gives some context, but no alternative guidance is provided.
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.
Most tools have clearly distinct roles: authenticate handles login, connect reports connection status, cpf_receita_consultar does the actual CPF lookup. However, connect and toolkit_info both touch connection status, and authenticate/connect have some overlap, which could cause minor confusion.
Naming is inconsistent: English and Portuguese are mixed (cpf_receita_consultar vs. report_bug), some names are verbs (authenticate, connect) while others are nouns (marketplace, toolkit_info), and the domain tool uses snake_case while others don't follow a clear pattern.
At 7 tools, the count is reasonable and within the typical well-scoped range. However, the server is named for CPF/Receita Federal but has only one domain-specific tool, with the rest being generic platform utilities, making the set feel slightly imbalanced for its stated purpose.
The CPF consultation tool provides basic lookup capability, but the domain surface is thin—there's no validation, batch, or historical querying. The marketplace tool mitigates this by allowing access to other MCPs, but for a server dedicated to CPF/Receita, the coverage is incomplete.