Skip to main content
Glama

create_certification

Create a certification entry in your portfolio with title, authority, issue/expiration dates, credential URL, and related skills or projects. Requires write permission.

Instructions

Create a new certification. Requires write permission.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesCertification title
authorityNo
body_htmlNo
is_activeNo
skill_idsNo
issued_dateNoYYYY-MM-DD
project_idsNo
credential_urlNo
expiration_dateNoYYYY-MM-DD

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are absent, so the description carries the full burden. It mentions that write permission is required, which is a useful constraint, but it does not disclose expected return values, side effects, error conditions, or any other behavioral details. For a mutation tool with no annotations, this is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with two short sentences and no redundant wording. However, its brevity borders on under-specification, and while it is not verbose, the lack of substantive content reduces its effectiveness. It earns points for being front-loaded with the action and permission, but the structure is minimal.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 9 parameters, no output schema, and no annotations, the description is severely incomplete. It does not explain the creation process, success/failure responses, validation rules, or any relationship to other entities. An agent would struggle to invoke this correctly without additional external knowledge.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 33%, and the tool description adds no parameter details whatsoever. It does not compensate for the low schema coverage, leaving most of the 9 parameters unexplained. The agent has to infer semantics from property names alone, which is inadequate for parameters like 'authority', 'body_html', and 'skill_ids'.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the specific verb 'Create' and the resource 'certification', which clearly distinguishes it from sibling tools like get_certification, update_certification, and delete_certification. It is unambiguous about the action.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives. It does not mention prerequisites, context, or when not to use it. The description only states the action and a permission requirement, offering no routing or exclusion information.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.