get_certificate
Retrieve SSL certificate details by ID from 1Panel to verify expiration, issuer, and settings before renewal or deployment.
Instructions
Get SSL certificate details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Retrieve SSL certificate details by ID from 1Panel to verify expiration, issuer, and settings before renewal or deployment.
Get SSL certificate details
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden, yet it says nothing beyond the implied read nature of 'get'. It does not disclose permissions required, what certificate details are returned, or how a missing/invalid certificate is handled.
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?
A single front-loaded sentence with no filler, which is structurally efficient. The terseness, however, shades into under-specification rather than genuinely earned 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?
For a lookup tool with no annotations, no output schema, and an undocumented parameter, the description is too thin. It leaves the agent without the identity of the parameter or the nature of the returned 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 single required 'id' parameter is undocumented. The description never explains that the ID identifies a certificate or its expected format/type, so it fails to compensate for the schema gap.
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 states a specific verb and resource ('Get SSL certificate details'), which is clear enough to distinguish a single-certificate lookup from list_certificates. However, it does not differentiate itself from closely related siblings like get_website_ssl or list_certificates, so an agent still has to infer which certificate tool fits.
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?
There is no guidance on when to use this tool versus alternatives such as list_certificates, get_website_ssl, or obtain_ssl. No prerequisites, context, or exclusions are given, leaving the routing decision entirely to the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.