Mcp agent evaluation
Skill mouadja02/skills/skills/agent-eval/mcp-agent-evaluation
Use when evaluating MCP-enabled agents, tool-using LLM systems, multi-server workflows, tool-selection quality, trajectory quality, task completion, or MCP security regressions.From its SKILL.md
npx -y skills add mouadja02/skills --skill mcp-agent-evaluationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.7 KB, 948 tokens by cl100k_base, as published. Nobody here has run it
MCP Agent Evaluation
Use this skill to design practical evaluations for agents that discover, select, and call MCP tools. Focus on whether the agent can solve real tasks with live or simulated toolchains, not only whether it can call a single tool correctly.
Activation Checklist
Activate when the user asks to:
- Benchmark an MCP client, coding agent, or multi-tool agent
- Compare models on tool selection, planning, or task completion
- Build evaluation tasks from real MCP servers
- Diagnose failed tool-use trajectories
- Add security or prompt-injection tests around MCP tool metadata and outputs
Evaluation Model
Evaluate at four levels:
- Tool discovery - the agent finds relevant tools without being handed exact tool names.
- Schema and parameter use - the agent fills arguments correctly, handles optional fields, and respects tool constraints.
- Trajectory quality - the agent sequences calls coherently, uses intermediate outputs, and recovers from tool errors.
- Outcome quality - the final answer is correct, grounded in tool results, and safe to deliver.
Add a fifth track for security when untrusted tool metadata, retrieved content, or tool outputs can influence future calls.
Workflow
-
Inventory the environment
- List MCP servers, tools, schemas, authentication boundaries, side effects, and domain coverage.
- Mark tools as read-only, write-capable, privileged, networked, or user-data-sensitive.
- Record which tools are complementary and should be used together.
-
Create task families
- Fuzzy lookup: user describes the goal without naming the tool.
- Multi-hop: success requires two or more dependent calls.
- Cross-domain: success requires tools from different servers.
- Error recovery: one call fails or returns incomplete data.
- Grounding: answer must cite or summarize intermediate tool outputs.
- Security: malicious descriptions, injected tool output, overbroad scopes, and unsafe write attempts.
-
Define scoring before running agents
- Use binary pass/fail for critical outcomes.
- Use graded rubrics for trajectory, grounding, and recovery.
- Separate model failures from harness failures and unavailable tools.
- Store full trajectories, not just final answers.
-
Run minimal baselines
- Single explicit tool task.
- Single server multi-step task.
- Multi-server task with fuzzy instructions.
- Security canary task where the correct behavior is refusal, confirmation, or sandboxing.
-
Analyze failure modes
- Wrong tool chosen
- Correct tool with wrong arguments
- Correct calls but poor state tracking
- Ungrounded final answer
- Unsafe trust in tool metadata or output
- Excessive retries or runaway tool loops
Rubric
| Dimension | Pass Signal | Failure Signal |
|---|---|---|
| Tool retrieval | Relevant tools selected from vague request | Agent ignores available tools or picks lexical near misses |
| Schema use | Required and optional fields are valid | Hallucinated fields, invalid enum values, missing constraints |
| Planning | Calls are ordered by dependency | Calls are redundant, circular, or skip prerequisite data |
| Grounding | Final answer reflects tool outputs | Final answer invents results or ignores returned evidence |
| Recovery | Agent adapts to errors or ambiguity | Agent repeats the same failed call |
| Safety | Side effects are gated and instructions are isolated | Tool output or metadata overrides user/system intent |
Helper Script
Use mcp_eval_plan.py to turn a server/task inventory into a Markdown evaluation plan:
python scripts/mcp_eval_plan.py inventory.json
The input may contain domains, servers, task_families, and risks. Missing fields use conservative defaults.
References
Read benchmark-map.md before designing a new benchmark suite or choosing which public MCP benchmark to mirror.
External grounding:
What ships with it: 2 files
5.1 KB alongside SKILL.md, 1 of them executable
references/
- benchmark-map.md2.0 KB
scripts/
- mcp_eval_plan.pyruns3.1 KB