group_get
A study group: topic, member handles (no ids/PII), and the shared-study cards.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
A study group: topic, member handles (no ids/PII), and the shared-study cards.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Input schema / additionalPropertiesAdded value: +falseInput schema / properties / id / maxLengthAdded value: +4000Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosure. It does add some value by explicitly stating that member handles are returned without ids/PII, which is a privacy-relevant behavioral trait. However, it does not mention read-only behavior, error handling, or what happens if the id is invalid, leaving important gaps.
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 extremely concise and uses a clear colon-list structure. There are no wasted words. However, it is under-specified, which hurts other dimensions, but for conciseness alone it is well-formed and brief.
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?
The tool is simple (one parameter, no output schema), but the description is incomplete. It describes some return fields (topic, member handles, shared-study cards) but omits the id itself and does not explain the operation's purpose or result type. The lack of any usage context or error behavior leaves the overall picture incomplete.
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 one required parameter 'id' with no description, and schema description coverage is 0%. The description fails to mention the id parameter at all, offering no explanation of what id should be provided or how it relates to the group. The description does not compensate for the missing schema documentation.
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 is a noun phrase ('A study group: topic, member handles...') that describes the resource rather than stating the tool's action. There is no verb like 'get' or 'retrieve,' so an agent must infer from the name that this tool returns a group. It also does not distinguish itself from siblings like groups_list.
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 provides no guidance on when to use this tool versus alternatives. It does not mention groups_list, group_create, or group_join, nor does it suggest scenarios where fetching a single group by id is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.