kopern_get_agent
Get full details of an agent: system prompt, model, skills count, tools count, grading suites count.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent ID or name |
Get full details of an agent: system prompt, model, skills count, tools count, grading suites count.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent ID or name |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description aligns with a read-only fetch. The description adds valuable context by enumerating the return fields (system prompt, model, counts), which helps the agent anticipate the response shape. No contradictory behavior is disclosed, and the extra detail exceeds the annotation 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 sentence that leads with the action and resource, then efficiently lists the return fields. Every word contributes value, and there is no redundancy or tangential information.
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?
Given the tool's simplicity—one parameter, read-only annotation, and no output schema—the description is complete. It effectively acts as return-value documentation by listing all included details, and the parameter is fully documented. Nothing material is missing.
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?
The input schema already provides 100% coverage by describing agent_id as 'The agent ID or name'. The description does not add any additional parameter semantics beyond what the schema offers, so the baseline score of 3 is appropriate.
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 a clear resource ('agent') and lists the exact details returned (system prompt, model, skills count, tools count, grading suites count). This clearly distinguishes it from siblings like list_agents (which likely returns summaries) and update_agent (which modifies).
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 phrase 'full details' implies this tool should be used when a complete agent snapshot is needed, suggesting the need to distinguish from list_agents. However, there is no explicit comparison to alternatives or stated when-not-to-use conditions. Usage is implied, not directly stated.
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.
Most tools have clearly distinct purposes (create vs list vs get vs run vs connect). A few potential overlaps exist (deploy_template vs create_agent, import_agent vs create_agent, grade_prompt vs run_grading) but descriptions clarify the differences.
All tools share the 'kopern_' prefix and mostly follow a verb_noun pattern (create_*, get_*, list_*, run_*, connect_*). The exception is 'kopern_compliance_report', which uses a noun phrase without a verb, breaking the otherwise consistent naming.
With 31 tools, this exceeds the 25-tool threshold for well-scoped servers. While the domain is broad (agent lifecycle, grading, pipelines, teams, connectors), the sheer number of tools feels heavy and could be consolidated (e.g., a single 'manage_memory' tool already bundles multiple actions).
Core agent management (create, read, update, delete, list) is solid, and grading has suite creation, execution, and results. However, pipelines and teams lack get/update/delete operations, connectors only support connect (no disconnect), and there's no way to manage grading suites beyond creation and running. This leaves notable gaps for secondary resources.