kopern_list_grading_runs
List grading runs for a suite. Shows score history, pass rates, and versions over time. No LLM cost.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent ID or name | |
| suite_id | Yes | The grading suite ID |
List grading runs for a suite. Shows score history, pass rates, and versions over time. No LLM cost.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | The agent ID or name | |
| suite_id | Yes | The grading suite ID |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful context beyond that: it discloses that the operation incurs no LLM cost and describes what information the tool returns (score history, pass rates, versions). This enriches the behavioral understanding without contradicting the read-only hint.
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, front-loaded with purpose. The first sentence states the core action, and the second adds valuable information (what is shown and cost) without any fluff. Every word earns its place.
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?
This is a simple list tool with two well-documented parameters and no output schema. The description adequately covers what the tool does and what it returns, and the readOnlyHint annotation covers safety. Nothing essential is missing for an agent to select and invoke this tool correctly.
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 100%, with agent_id and suite_id both described. The tool description does not add any parameter-specific meaning beyond what the schema already provides, so the baseline score of 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 opens with a specific verb+resource: 'List grading runs for a suite,' and further clarifies the scope by mentioning score history, pass rates, and versions over time. This clearly distinguishes it from sibling tools like get_grading_results, which likely fetches specific results rather than listing runs.
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 provides clear context for when to use the tool – to list grading runs for a suite and review history. It does not explicitly name alternatives or exclusions, but the context is unambiguous, and the 'No LLM cost' note implies safe, cheap exploration, which effectively guides usage.
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.