Get an agent
mistral_get_agentRetrieve a single agent entity with its configuration. Management API: GET /v1/agents/{agent_id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent id. |
mistral_get_agentRetrieve a single agent entity with its configuration. Management API: GET /v1/agents/{agent_id}.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent id. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description's 'Retrieve' conveys no additional behavioral information beyond what annotations provide. No extra context is added.
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 two sentences long and front-loaded with the core purpose and API endpoint. No extra words or redundancies.
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 simple get tool with one parameter, annotations, and no output schema, the description sufficiently covers what the tool does and the API endpoint. It could optionally mention return behavior, but not required.
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 coverage is 100% with a single parameter 'agent_id' described as 'The agent id.' The description does not add meaning beyond the schema, so baseline 3 applies.
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 clearly states 'Retrieve a single agent entity with its configuration,' specifying the verb and resource. It distinguishes from siblings like list_agents and create_agent via name and context.
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 description implies usage for retrieving a specific agent by ID but does not explicitly state when to use this tool versus alternatives like mistral_list_agents or mistral_create_agent. No exclusions or when-not guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.