kanbai_get_sop
Get one public SOP by numeric id, including its full content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | SOP id. |
Get one public SOP by numeric id, including its full content.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | SOP id. |
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 provided, the description carries the burden of behavioral disclosure. It usefully discloses that only public SOPs are accessible and that the full content is included. However, it does not mention what happens if the id is invalid, nonexistent, or refers to a non-public SOP.
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 concise sentence with no filler, and the key points—single item, public scope, retrieval intent, numeric id, full content—are all front-loaded and directly useful to an agent.
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 one-parameter, no-output-schema retrieval tool, the description is largely complete: it says what resource is acted on, how it is identified, and what the response includes. It could add edge-case behavior (not found, non-public id) to be fully complete, but the low complexity makes the omission minor.
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 already fully describes the id parameter as an integer SOP id with an exclusiveMinimum of 0, so schema coverage is 100%. The description's 'numeric id' wording adds minimal semantic value beyond the schema, staying at the baseline for covered parameters.
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 action ('Get'), the resource ('one public SOP'), and the identifying input ('numeric id'), and specifies that the full content is returned. This distinguishes it from sibling tools: it is singular and specific to SOPs, not templates and not a list operation.
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 makes the intended context clear: use this when you need one specific public SOP's full content, given its numeric id. It does not explicitly name alternatives or exclusions, but the sibling tool names and the singular focus provide enough implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.