Borrowing it
Nothing to install: this file belongs to glassBead-tc/widescreen-research. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/glassBead-tc/widescreen-research/main/.claude/commands/games/mcp-server-implementation-game.mdgit clone --depth 1 https://github.com/glassBead-tc/widescreen-researchWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/glassbead-tc/widescreen-research/mcp-server-implementation-game)<a href="https://agentmods.dev/commands/glassbead-tc/widescreen-research/mcp-server-implementation-game"><img src="https://agentmods.dev/badge/commands/glassbead-tc/widescreen-research/mcp-server-implementation-game.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01577 |
| Opus 5 | $0.00000 | $0.00788 |
| Sonnet 5 | $0.00000 | $0.00315 |
| Haiku 4.5 | $0.00000 | $0.00158 |
Grade A, and why
mcp-server-implementation-game scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/mcp-server-implementation-game
Implement and validate a new MCP server end-to-end with instrumentation, registry integration, and a first-class dogfooding workflow that exercises every exposed capability through the agent.
Usage
/mcp-server-implementation-game $ARGUMENTS [ship_deadline] [risk_level] [transport] [registry_visibility]
Arguments
$ARGUMENTS(required): High-information server specification (PRD/RFC/URL/brief); see Variablesship_deadline(optional): ISO 8601 deadline (default: 1 week from now)risk_level(optional): "low" | "medium" | "high" (default: "medium")transport(optional): "stdio" | "shttp" (default: "stdio")registry_visibility(optional): "local" | "team" | "public" (default: "local")
Variables
- SPEC_DOCUMENT: $ARGUMENTS (prewritten specification document)
- Must include: tool/resource schemas, prompts/models (if any), auth/secret handling, error taxonomy, retries/timeouts, perf goals, observability, rollout
- SERVER_ID: derived from spec first line, slugged
- TRANSPORT: stdio/shttp per argument
- REGISTRY: where to register (local/team/public)
Algorithm
Phase 0: Initialize Server Game Space
mkdir -p .mcp-server-game/{state,artifacts,checks,logs}
cat > .mcp-server-game/state.json << EOF
{
"server_id": "$SERVER_ID",
"transport": "$TRANSPORT",
"registry_visibility": "$REGISTRY",
"deadline": "$SHIP_DEADLINE",
"risk_level": "$RISK_LEVEL",
"phase": 0,
"budgets": { "error_budget": 0.02, "p95_latency_ms": 250 },
"instrumentation": { "metrics": true, "events": true, "traces": true },
"connectivity": { "configured": false, "verified": false },
"dogfood": { "planned": false, "executed": false, "results_path": null }
}
EOF
# Persist raw spec
cat > .mcp-server-game/spec.raw.txt << 'EOF'
$ARGUMENTS
EOF
Phase 1: Readiness Gate (Spec-Provided Contracts)
cat > .mcp-server-game/checks/readiness.json << 'EOF'
{
"contracts": [
"Spec provides tool schemas (names, params, result types)",
"Spec provides resource schemas (uris, mime types, metadata)",
"Spec provides error taxonomy + retry/timeout strategy",
"Spec documents auth/secret handling",
"Transport selected (stdio/shttp) with bootstrap",
"Observability plan (metrics/events/traces) present in spec"
],
"registry": [
"Server metadata prepared for registry",
"Visibility chosen (local/team/public)"
]
}
EOF
echo "✅ Readiness checklist created"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 204 lines · 0 tokens per session scan A 16502e4995f8
mcp-server-implementation-game is a command published in the GitHub repository glassBead-tc/widescreen-research (6 stars, last pushed 10mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,577 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
paul:verify
Guide manual user acceptance testing of recently built features.
webapp-testing
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
ui-snapshot.template
This prompt was authored for Claude-style slash workflows. In Codex runtime, adapt tool calls as follows.
laravel-playwright
E2E Playwright patterns; use the laravel:e2e-playwright skill exactly as written.
qa
Smoke or browser-walk a running app. Report only. Do not implement. Do not merge.
verify-pr
Verify a PR's frontend changes through browser automation.