accelo_get_rate
Retrieve a single Accelo rate by its ID, with optional additional fields.
Instructions
Get a single rate by ID.
Args: id: Rate ID fields: Additional fields to return
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| fields | No |
Retrieve a single Accelo rate by its ID, with optional additional fields.
Get a single rate by ID.
Args: id: Rate ID fields: Additional fields to return
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| fields | No |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden and discloses almost nothing: no mention of read-only safety, error behavior for a missing ID, authentication needs, or return shape. It only restates the operation.
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 short and front-loaded with the core operation. The Args block is fine, though the parameter lines add nearly no value, but it is not bloated.
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 tool with no annotations, no output schema, and 0% schema coverage, the description should explain return values, error handling, and the fields parameter format. None of that is present, leaving significant gaps.
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 but does not. 'id: Rate ID' and 'fields: Additional fields to return' merely repeat parameter names with no format, type guidance, or examples for what 'fields' accepts.
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?
States a specific verb and resource ('Get a single rate by ID'), which is clear. It does not explicitly differentiate itself from sibling 'accelo_list_rates' or 'accelo_count_rates', but the singular 'single rate' phrasing implies the distinction reasonably well.
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 usage (retrieve one rate when you have its ID), but never states when to use this versus accelo_list_rates or accelo_count_rates. No exclusions or alternatives are named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.