List board entries
list_entriesRead ranked or recent red-flag/green-flag entries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | top | |
| limit | No | ||
| offset | No |
list_entriesRead ranked or recent red-flag/green-flag entries.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | top | |
| limit | No | ||
| offset | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint and idempotentHint, and the description's 'Read' aligns with these. The description adds that entries are 'ranked or recent' and 'red-flag/green-flag,' which provides some context about the data, but it does not disclose additional behavioral traits like pagination behavior or response format. Given the annotations cover safety, the description adds moderate value.
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, focused sentence that is front-loaded with the action ('Read') and resource ('entries'). It contains no filler or redundant information, making it optimally concise and well-structured.
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 the tool's low complexity (three simple parameters, read-only annotations, no output schema), the description is reasonably complete. It states what is read and the two sort modes. It could mention that limit/offset are available for pagination, but the schema already encodes these, and the description's brevity is acceptable for this simple listing tool.
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, so the description must compensate. It adds meaning to the 'sort' parameter by mapping 'ranked' to 'top' and 'recent' to 'recent,' which is helpful. However, it does not address 'limit' or 'offset,' though these parameters are fairly self-explanatory from their names and schema constraints (min/max). Overall, the description partially compensates but leaves some parameter semantics implicit.
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 verb 'Read' and the resource 'ranked or recent red-flag/green-flag entries,' making the tool's purpose specific and unambiguous. It distinguishes from siblings like 'rank_entry' and 'submit_entry' by focusing on read-only listing, and from 'get_board_stats' by targeting entries rather than stats.
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 verb 'Read' implies this tool is for retrieving entries rather than modifying them, but no explicit guidance is given about when to use this tool versus alternatives like 'get_board_stats' or 'rank_entry.' The usage context is implied rather than stated, so it does not fully meet the criteria for clear when-to-use vs. when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.