list_certifications
Retrieve a paginated list of certifications from a portfolio profile. Specify page and limit to control results.
Instructions
List all certifications
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| limit | No |
Retrieve a paginated list of certifications from a portfolio profile. Specify page and limit to control results.
List all certifications
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| limit | No |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden of behavioral disclosure. It states that certifications are listed, but does not mention pagination, ordering, response shape, or whether 'all' is affected by the page/limit parameters.
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 extremely short and avoidably under-specified. It has no fluff, but it also provides little useful guidance; this is minimalism rather than effective conciseness.
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 no annotations, no output schema, and no parameter documentation, the description is not complete enough for an agent to fully understand pagination behavior or what the list operation returns. It covers the basic action but omits important contextual details.
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%, and the description gives no explanation of page or limit. Although the parameter names and schema constraints are somewhat self-evident, the description adds no meaning beyond the raw schema.
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 specific verb-resource pair, 'List all certifications', which clearly indicates a collection operation. It is distinguishable from get_certification by the plural resource and 'all' wording, though it does not explicitly name that sibling.
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?
No guidance is provided about when to use this tool versus get_certification or the other list tools. The intended usage is only implied by the simple wording, and no alternatives or exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.