Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
DEPRECATED: Replaced by mcp-app-builder. Previously used to build MCP servers with tools, resources, and prompts via mcp-use.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
evals/README.md
1# Evals23Manual evaluations for the mcp-builder skill.45## Format67Each eval file is a JSON array:89```json10[11{12"query": "User input to test",13"expected_behavior": "OUTCOME. What the response should do."14}15]16```1718## Running Evals1920In Claude Code:2122```23Run the evals in evals/<reference>.json. For each query, spawn a Sonnet agent with the mcp-builder skill context and compare the response against expected_behavior. Report pass/fail for each.24```25