Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/mazze93/github-mcp-gateway/claude-mdgit clone --depth 1 https://github.com/mazze93/github-mcp-gatewayWrote 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/instructions/mazze93/github-mcp-gateway/claude-md)<a href="https://agentmods.dev/instructions/mazze93/github-mcp-gateway/claude-md"><img src="https://agentmods.dev/badge/instructions/mazze93/github-mcp-gateway/claude-md.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 | $0.02614 | $0.02614 |
| Opus 5 | $0.01307 | $0.01307 |
| Sonnet 5 | $0.00523 | $0.00523 |
| Haiku 4.5 | $0.00261 | $0.00261 |
Grade A, and why
github-mcp-gateway CLAUDE.md 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 4d 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 — 188 lines — stays where its author put it; the contents beside it link to each section on GitHub.
github-mcp-gateway
Remote MCP server on Cloudflare Workers giving MCP clients (Claude Code, Claude.ai/Cowork, and any spec-compliant client) authenticated GitHub access via a GitHub App user-to-server OAuth flow.
Deployment facts (live)
- Worker:
github-mcp-gateway— https://github-mcp-gateway.mazzewhiteley93.workers.dev - MCP endpoint:
/mcp(streamable HTTP) and/sse(legacy SSE) - KV namespace:
OAUTH_KV=0773ec3dd785418c984559f47d1623e9 - Secrets set on the worker:
GITHUB_APP_CLIENT_ID,GITHUB_APP_CLIENT_SECRET,COOKIE_ENCRYPTION_KEY - Allowlist var:
ALLOWED_GITHUB_LOGINS="mazze93"(inwrangler.jsonc) - GitHub App permissions: Contents RW, Issues RW, Pull requests RW, Metadata R.
It does not have Administration —
github_update_repowill 403 until that permission is added to the App and re-approved on the installation. Use the locally-authenticatedghCLI as the fallback for repo description/topic edits.
Commands
npm run typecheck # tsc --noEmit
npm test # vitest run, via @cloudflare/vitest-pool-workers (real workerd, not a Node polyfill)
npm test test/loopback.test.ts # one file
npm test -- -t "localhost" # one test by name
npm run dev # wrangler dev at http://localhost:8788 (needs .dev.vars)
npm run tail # live worker logs
npx wrangler deploy --dry-run --outdir dist # local build check; catches
# bundling/binding errors tsc cannot see. Never publishes.
Deployment is automatic. .github/workflows/deploy.yml typechecks, tests,
and deploys on every push to main — it is the only place a Cloudflare token
exists (ci.yml runs on PRs including forks and is deliberately
credential-free). npm run deploy is a manual fallback, not the normal path;
production drifting behind main because someone forgot to run it by hand is
the exact failure that workflow was added to close.
test/*.test.ts covers the OAuth allowlist gate, CSRF/state/signed-cookie
handling, loopback redirect normalisation, token refresh, and tool
error-wrapping — see vitest.config.ts for how bindings are sourced from
wrangler.jsonc. CI runs it as a required gate. Not covered: the
GET/POST /authorize route wiring, and a few timing/concurrency edges
noted in PR #13's description. typecheck + test + a live tool call
against the deployed worker is the verification bar.
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.
- 4d ago First seen · 188 lines · 2,614 tokens per session scan A 155ddb07f7c0
github-mcp-gateway CLAUDE.md is an instructions file published in the GitHub repository mazze93/github-mcp-gateway (1 stars, last pushed yesterday), licensed Apache-2.0. It adds 2,614 tokens to every session, about $0.0131 per session on Opus 5. 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 instructions, from other repositories
vibesdk AGENTS.md
AGENTS.md instructions for cloudflare/vibesdk, covering agents.md, tooling, verification, frontend ui and frontend data fetching.
vibesdk CLAUDE.md
Claude Code instructions for cloudflare/vibesdk, covering claude.md, communication style, project overview, key architectural patterns and common development tasks.
munkel CLAUDE.md
Claude Code instructions for limehq/munkel, covering claude.md, monorepo layout, commands, macos development specifics and deploy.
cloudbox AGENTS.md
Instructions for acoyfellow/cloudbox, covering cloudbox agent guide, canonical commands, deploy model, cloudflare account boundaries and required production secrets.
ctxlayer CLAUDE.md
Claude Code instructions for stevenn/ctxlayer, covering ctxlayer — claude code briefing, what runs where, architecture pointers, how a claude session should work in this repo and conventions.
ctxlayer AGENTS.md
AGENTS.md instructions for stevenn/ctxlayer, covering working in this repo as an agent, golden path for any change, where things live, module rules and adding an endpoint.