Skip to main content
Glama

submit_evaluation

Evolve an agent with one task outcome: {task_id, task_type, success_score in [0,1], optional accuracy/user_satisfaction/ cost_efficiency/safety_score/notes/used_nodes/used_edges}. Success strengthens the used edges, failure weakens them; growth and pruning follow the genome's rules under its safety axioms (NG1). Returns the new developmental-ledger events.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYes
evaluationYes
request_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description bears full burden. It discloses key behavioral traits: success/failure consequences on edges, growth/pruning rules, and safety axioms (NG1). However, it omits details like idempotency, rate limits, or authentication requirements.

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

Conciseness4/5

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

The description is concise, with a front-loaded main verb and clear breakdown of evaluation fields. It uses three sentences effectively without redundancy. Slightly more structure (e.g., bullet points) could improve readability, but it is efficient.

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

Completeness3/5

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

Given the complexity (nested object, 3 params, output schema exists), the description covers the evaluation structure and return type (ledger events). However, it lacks details on error handling, idempotency, or prerequisites (e.g., agent must exist). The output schema is mentioned but not described, relying on the schema itself.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must add meaning. It thoroughly describes the 'evaluation' parameter structure (task_id, success_score, optional fields). However, 'agent_id' and 'request_id' are not described, though agent_id is self-explanatory. Overall, it significantly aids understanding beyond the schema.

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 clearly states the verb 'Evolve' and the resource 'agent', specifying the input as a task outcome with detailed fields. It effectively distinguishes itself from sibling tools like create_agent or describe_agent by describing a mutation operation unique to this tool.

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

Usage Guidelines3/5

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

The description implies usage when a task outcome is available ('Evolve an agent with one task outcome'), but does not explicitly state when to use this over alternatives like compute_efficiency_report or route_task. No exclusions or alternative tools are mentioned.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but describe_agent and get_agent both return agent information, and best_next_steps vs route_task could be confused in decision-making contexts. The descriptions help clarify, so the ambiguity is limited.

Naming Consistency4/5

The vast majority of tools follow a verb_noun snake_case pattern (e.g., create_agent, list_agents), but best_next_steps breaks the pattern and compute_efficiency_report reads as a noun phrase. These are minor deviations from an otherwise consistent style.

Tool Count5/5

With 14 tools, the server sits comfortably within the ideal 3-15 range. Each tool serves a specific function in the agent lifecycle or compute-routing workflow, so the count feels well-scoped without unnecessary bloat.

Completeness4/5

The agent lifecycle is well covered with create, delete, get, list, describe, export/import, evaluation, and ledger access. The compute side includes profile registration, task routing, outcome recording, and reporting. Minor gaps like no direct agent update or profile listing exist, but they are workable.