Skip to main content
Glama

client_get

Retrieve client details from ISPConfig by supplying a client ID. Use this action to access hosting account information for a specific client.

Instructions

Get client details by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
client_idYesClient ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. 'Get' implies a read-only operation with no side effects, but the description does not mention not-found behavior, permissions, or response structure. This is minimally adequate for a simple getter, but adds little beyond the obvious.

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

Conciseness5/5

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

The description is a single, front-loaded sentence with no filler or redundant information. Every word contributes to identifying the tool's purpose.

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

Completeness4/5

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

For a low-complexity tool with one well-documented required parameter and no output schema, the description is nearly complete. It would benefit from a brief note on what 'details' includes or behavior when the client ID does not exist, but the current level is adequate for correct selection and invocation.

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

Parameters3/5

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

Schema description coverage is 100%, and the schema already defines client_id as a number with description 'Client ID'. The description's 'by ID' adds no new semantic meaning beyond what the schema provides, so the baseline of 3 is appropriate.

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 uses a specific verb ('Get') with a clear resource ('client details') and a precise identifier ('by ID'). This clearly distinguishes it from sibling tools like client_add, client_update, and client_delete, and from other *_get tools targeting different resources.

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

Usage Guidelines4/5

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

The context is clear: this tool is for fetching a single client's details using a client ID. It does not explicitly state when not to use it or name alternatives, but the operation is unambiguous given the sibling set, so the guidance is sufficient though not exhaustive.

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