song_history
Every time a song has been played (most recent first).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| song | Yes | ||
| limit | No | ||
| include_related | No |
Every time a song has been played (most recent first).
| Name | Required | Description | Default |
|---|---|---|---|
| song | Yes | ||
| limit | No | ||
| include_related | 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?
With no annotations, the description carries full burden. It discloses the sort order ('most recent first'), which is a key behavioral detail. However, it does not mention that it is a read operation, or that results may be limited (default limit of 40 implied by schema).
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, which is concise but omits critical details. It is front-loaded with the main purpose, but lacks structure to separate intent from usage context.
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?
Given 3 parameters, no output schema, and no annotations, the description is inadequate. It does not specify return format, error handling, or how parameters affect results. The tool's behavior is only partially described.
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 input schema has 0% description coverage, and the tool description provides no explanation of the 'song', 'limit', or 'include_related' parameters. The agent must guess what each parameter does.
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 states the tool provides play history for a song, sorted most recent first. However, it lacks a clear verb like 'list' or 'retrieve', and the phrasing is a noun clause. It distinguishes from siblings like 'song_stats' which aggregate stats, but the distinction is not explicit.
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?
No guidelines on when to use this tool versus alternatives such as 'appearances' or 'song_stats'. The description does not mention prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.