clokio_get_client
Retrieve a client's information by specifying the client ID. Returns the client record from the connected Clokio workspace.
Instructions
Get a client by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| client_id | Yes |
Retrieve a client's information by specifying the client ID. Returns the client record from the connected Clokio workspace.
Get a client by id.
| Name | Required | Description | Default |
|---|---|---|---|
| client_id | Yes |
Changes observed during successful MCP inspections.
v0.1.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safe read-only nature is established. The description adds no behavioral context beyond the operation itself, but it also does not contradict the annotations, which keeps this at an acceptable baseline.
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 a single short sentence with no filler. It front-loads the verb and resource and every word contributes to the meaning.
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 one-parameter read-only lookup with a self-explanatory id parameter, the description is sufficient to select and invoke the tool. A return-value or not-found note would have been useful, but the absence of an output schema and the simplicity of the operation keep this from being a real gap.
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 only says 'by id' without identifying or elaborating on the client_id parameter. The schema already names client_id as an integer, so the description adds essentially no meaning beyond the structured data.
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 'Get' with the resource 'client' and the access path 'by id'. This is unambiguous and distinguishes the operation from sibling list/create tools such as clokio_add_client_contact and clokio_list_projects.
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?
The intended use is clear: call this when you need a single client record and already have its client_id. There are no sibling get-client alternatives to exclude, so the lack of an explicit alternative comparison is not a significant gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.