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 indicate this is not read-only and is idempotent, so the description does not need to restate those. It adds the useful behavioral note about including recent messages for reproduction, but it does not disclose what happens after submission or any other side effects beyond what annotations imply.
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, front-loaded with the tool's purpose and followed by a single actionable instruction. Every sentence earns its place with no redundant wording.
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 with no output schema, the description covers the main use case and one parameter. However, the incomplete parameter semantics and the string-vs-array mismatch leave gaps that could confuse an agent trying to invoke the tool correctly.
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 compensate for the undocumented parameters. It only explains the conversation parameter, and it misleadingly calls it an 'array' while the schema defines it as a string. The required 'message' parameter and the 'context' parameter are not explained at all.
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: reporting a bug, missing feature, or sending feedback. It uses a specific verb and resource, though it does not explicitly differentiate itself from sibling tools like expo_testflight_feedback.
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 gives clear context for when to use the tool—when the user reports a bug, missing feature, or wants to send feedback. It also provides a concrete instruction to include the conversation array, but it does not mention exclusions or alternatives.
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 build/workflow tools are clearly separated by resource and action, but some boundaries are blurry: expo_learn overlaps with expo_search_documentation/expo_read_documentation, and connect/toolkit_info/authenticate all touch connection and auth state. Agents may need to read descriptions carefully to avoid picking the wrong one.
The Expo-specific tools follow a strong expo_<domain>_<action> snake_case pattern, e.g., expo_build_cancel, expo_workflow_create, expo_search_documentation. The non-prefixed platform tools like authenticate, connect, marketplace, report_bug, and show_version break the pattern, but they read as a separate platform services group rather than random inconsistency.
25 tools is at the heavy end, but the scope is broad: EAS builds, EAS workflows, TestFlight, documentation, auth, and platform maintenance each contribute natural clusters of tools. A few generic helpers like marketplace and show_version could arguably live elsewhere, but the overall size is defensible.
The build lifecycle and workflow lifecycle are well covered: create/run/list/info/cancel/logs exist for workflows, and run/list/info/cancel/logs/submit exist for builds. Documentation search/read support is solid; minor gaps like removing or updating installed libraries and exposing EAS Update tooling prevent a perfect score.