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 cover the safety profile with readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description adds useful reproduction-related context, but it does not disclose delivery mechanics, privacy implications of sending the conversation, or what feedback the user should expect.
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 with no filler. It front-loads the tool's purpose and immediately gives the single important usage requirement, so every sentence earns its place.
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 feedback tool, the description is minimally adequate: it states the action, hints at the required message, and tells the agent to include recent messages for reproduction. However, it omits explanation of the context field, the string-serialized conversation mismatch, and what happens after submission.
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 explain the parameters, but it only meaningfully addresses conversation. Message and context remain under-specified, and the description calls conversation an array while the schema types it as a string, which could confuse the agent.
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 opens with a specific verb-resource pair ('Report a bug, missing feature, or send feedback'), clearly defining the tool's scope. It is unambiguous and distinct from unrelated sibling tools like show_version or toolkit_info.
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 clearly implies the tool should be used when a user reports a bug, requests a feature, or sends feedback, and it adds a practical instruction to include the conversation for reproduction. It does not explicitly name alternatives or exclusions, but no sibling tool competes for this purpose.
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 top-level tools have distinct jobs, but `marketplace` bundles many actions that overlap with separately named tools such as `report_bug`, and `connect`/`toolkit_info` both report connection/provider state. An agent can find the right tool, but only after carefully reading the long definitions.
The names do not follow a single verb_noun pattern: `authenticate` and `connect` are one-word verbs, `marketplace` and `toolkit_info` are noun-like names, and `sintegra_to_consultar` mixes Portuguese structure into the set. Everything is readable snake_case, but the semantic naming is inconsistent.
Seven tools is reasonable for a platform-oriented MCP server. However, `marketplace` carries a very heavy multi-action workload, and several generic helpers (`connect`, `toolkit_info`, `show_version`) could be seen as peripheral.
The server covers the life cycle it needs to cover: authentication, connection status, marketplace search/run/install, billing/support hooks, version info, and the SINTEGRA query itself. The main gaps are minor, such as the absence of an explicit logout/disconnect or a dedicated domain operation beyond the single consultation.