Read a talent pool
yardstick_talent_pools_readRead one Talent CRM pool by public id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pool_id | Yes | ||
| request_id | No |
yardstick_talent_pools_readRead one Talent CRM pool by public id.
| Name | Required | Description | Default |
|---|---|---|---|
| pool_id | Yes | ||
| request_id | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds the scoping constraint of 'one pool by public id' but no additional behavioral context such as return shape or error behavior.
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, front-loaded sentence with no filler. Every word adds meaning, and the core action is immediately clear.
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?
The description is minimally viable for a simple read tool with strong annotations, but it omits the semantics of the optional request_id and gives no hint about the output or related list/update tools. An agent could invoke the tool correctly, but with some avoidable uncertainty.
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?
With 0% schema description coverage, the description must compensate, but it only clarifies pool_id as a 'public id'. It does not explain the optional request_id parameter or give any format/meaning beyond what the schema already shows with type and minLength.
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'), the resource ('one Talent CRM pool'), and the lookup method ('by public id'). It distinguishes this singleton-read from sibling tools like talent_pools_list, create, and update.
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 phrase 'by public id' explicitly identifies the prerequisite for using the tool, and 'one' implies a single-resource read rather than a list operation. However, it does not explicitly name alternative tools or exclusion cases, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.