Demo: Conformance
Run a 3-minute conformance demo script for MCP checks.
Demo Script: 3-Minute Conformance
Goal
Show that MCP behavior can be validated with a single profile run.
Timeline
- Minute 0-1: Explain why protocol conformance matters.
- Minute 1-2: List available profiles and launch
mcp_tooling. - Minute 2-3: Open the run report and read pass/fail matrix.
Live command sequence
export BASE_URL="https://fakemcp.com"
export PROJECT_TOKEN="replace_me"
curl -sS "$BASE_URL/v1/conformance/profiles"
run="$(curl -sS -X POST "$BASE_URL/v1/conformance/runs" -H "Content-Type: application/json" -H "X-Project-Token: $PROJECT_TOKEN" -d '{"profile":"mcp_tooling"}')"
run_id="$(node -e 'const b=JSON.parse(process.argv[1]); process.stdout.write(b.id)' "$run")"
curl -sS "$BASE_URL/v1/conformance/runs/$run_id" -H "X-Project-Token: $PROJECT_TOKEN"