get_certification
Retrieve a specific certification by providing its ID from your portfolio records.
Instructions
Get a specific certification by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Certification ID |
Retrieve a specific certification by providing its ID from your portfolio records.
Get a specific certification by ID
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Certification ID |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, but it only says 'Get' and adds no details about return format, error behavior, or whether the full certification object is returned. It does not provide insight beyond the operation implied by the tool's name.
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 one short, front-loaded sentence with no filler. It communicates the essential operation and selector immediately.
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 simple single-parameter getter, this description plus the fully covered schema is sufficient for an agent to select and invoke the tool correctly. The response shape is strongly inferable, though a brief note about the returned object would make it fully complete.
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 single id parameter as a Certification ID, achieving 100% schema description coverage. The description's 'by ID' adds no additional semantic meaning beyond what the schema provides, so a baseline 3 is appropriate.
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 uses a clear verb and resource: 'Get a specific certification by ID.' It cleanly distinguishes this single-item getter from sibling list_certifications, so an agent can tell them apart without inspecting the schema.
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?
'Get a specific certification by ID' clearly signals that this tool is for retrieving one known certification by its identifier. It does not explicitly name list_certifications as the alternative for browsing, but the scope is clear enough to guide selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.