card_get
Fetch one card (the full record) from the keeping by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Fetch one card (the full record) from the keeping by id.
| 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?
No annotations are provided, so the description carries full burden. It adds that the full record is returned and that lookup is by id, but doesn't disclose error handling, permissions, or side effects. For a simple get, this is somewhat transparent but lacks depth.
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 a single sentence with no extraneous words, front-loading the verb 'Fetch' and resource.
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 single-param read tool with no output schema, the description covers the core operation and return (full record). However, it omits usage context, error behavior, and explanation of the 'keeping' term, so it's not fully complete.
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 0% description coverage. The description mentions 'by id', indicating the id parameter is a card identifier, but provides no additional format or source guidance beyond the schema's string type.
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 fetches one card by id, specifying 'full record' to clarify scope. This distinguishes it from siblings like cards_browse (browsing multiple cards) and card_connections (relationships).
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 implies the use case (single card lookup by id) but provides no explicit comparison to alternatives. It doesn't mention that browsing multiple cards should use cards_browse, so guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.