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/pacnpal/mcpelevator/claude-mdgit clone --depth 1 https://github.com/pacnpal/mcpelevatorWrote 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/pacnpal/mcpelevator/claude-md)<a href="https://agentmods.dev/instructions/pacnpal/mcpelevator/claude-md"><img src="https://agentmods.dev/badge/instructions/pacnpal/mcpelevator/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.02626 | $0.02626 |
| Opus 5 | $0.01313 | $0.01313 |
| Sonnet 5 | $0.00525 | $0.00525 |
| Haiku 4.5 | $0.00263 | $0.00263 |
Grade A, and why
mcpelevator 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 5d 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 — 140 lines — stays where its author put it; the contents beside it link to each section on GitHub.
mcpelevator — self-hosted control plane that elevates stdio MCP servers into authenticated HTTP endpoints
One container runs stdio (or already-remote) MCP servers and exposes each as a remote
Streamable-HTTP endpoint (/s/<slug>/mcp) with a SvelteKit UI, process supervision, and auth.
Commands
Run backend commands from backend/, frontend commands from frontend/. The Makefile
wraps the common ones.
- Backend dev (autoreload, http://127.0.0.1:8080):
cd backend && uv run uvicorn app.main:app --reload --port 8080—make dev-backend - Frontend dev (HMR, http://localhost:5173, proxies /api and /s to :8080):
cd frontend && npm install && npm run dev—make dev-frontend - Build SPA into
frontend/build:cd frontend && npm ci && npm run build—make build - Backend tests:
cd backend && uv run pytest -q—make test - Frontend tests:
cd frontend && npm run test(vitest) - Frontend typecheck:
cd frontend && npm run check(svelte-check) - Refresh the uv lockfile:
cd backend && uv lock—make lock - Build + run everything in Docker:
docker compose up --build—make docker
Architecture
One FastAPI process serves three surfaces in a single port (backend/app/main.py):
/api/* control plane, /s/<slug>/mcp reverse proxy, and the built SPA as a catch-all mount.
- Desired-state reconciliation. SQLite is the source of truth. A background supervisor task
(
supervisor/) converges running processes to the desired state (Kubernetes-style), so the system is idempotent and survives restarts. It also owns idle quiescence: an enabled server with no proxy traffic inside its idle window (per-serveridle_timeout_s, else theidle_timeout_sruntime setting; 0 = off) is stopped into anidlestate, and the proxy wakes it on the next/srequest, holding the request until readiness (ADR-0002). - One bridge process per enabled server (
bridge/,runners/): each runs its own uvicorn on a loopback port hosting a FastMCP proxy of the stdio command (or an upstream HTTP/SSE URL), fault-isolated with a real PID and logs. When the server'srest_openapiexposure is on, the same bridge also serves each tool as plain REST (/rest/<tool>+ a generated/rest/openapi.json), reached through the same/s/<slug>/proxy path and auth. A server's Per-tool policy —disabled_tools(names to hide) andtool_overrides(upstream name -> replacement name/description) — is applied by ONE FastMCPToolTransformin the bridge (_tool_transform), so hiding, renaming, and re-describing all reach every surface at once (MCP, REST, and the group hub, which all resolve tools through this proxy): a hidden tool is dropped fromtools/listand refused on call, and a renamed one answers to its new name only. A renamed tool carries its pre-rename name in_metaunderUPSTREAM_META_KEY— a contract between the bridge and the discovery probe (supervisor.unit.tool_summary), which lifts it toupstream_nameso the UI keys per-tool state off a stable identity instead of reversing the rename map (an exposed name isn't unique). Both are part ofconfig_hash, so a change restarts the bridge. - Upstream OAuth (
auth/oauth_store.py,auth/oauth_flow.py): aremoteserver can authenticate to its upstream via OAuth instead of staticenvheaders. The interactive authorization-code grant (DCR + PKCE) runs in the control plane (/api/servers/{id}/oauth/authorize→ public/api/oauth/callback, anchored on the OAuthstate) using the MCP SDK'sOAuthClientProvider. Client identity is provider-adaptive: a static client id/secret when set, else the instance's CIMD client-metadata document (public/api/oauth/client-metadata.json, offered only from an https base whose document a self-probe confirms is publicly fetchable — an auth-gating proxy such as Cloudflare Access in front of the instance 401s the provider's server-side fetch, so the flow falls back instead; theupstream_oauth_client_moderuntime setting pins the choice explicitly tocimdordcr, probe-free, and a server'soauth_client_modecolumn overrides it per server,inheritdeferring to the setting) where the provider advertises URL-based client ids, else DCR; tokens land in a0600file store (<data_dir>/oauth/<id>.json) shared with the bridge, which reads them and auto-refreshes. Tokens live off the DB, so authenticating never re-hashes the row or bounces the bridge. - Runners (
runners/):npx,uvx,command,remote(proxy an already-remote MCP URL), anddocker(image-packaged servers — opt-in + root-equivalent behind thedocker_runnersetting). Each runner is a pureServer -> ProcessSpecbuilder;dockerstores the canonical image+container-args+env shape and synthesizes a hardeneddocker run(the bridge scrubs the child env for docker units so a-e KEYpassthrough can't reach the control plane's secrets). - Group registry (
groups/): thegroupsruntime setting is the single source of truth mapping a group name to its members — either"*"(every registered server, present and future) or an ordered list of server ids. Each group is served at/g/<name>/mcp: a control-plane-hosted FastMCP mounting a proxy per running member, tools namespaced by slug, rebuilt-and-swapped per group after each reconcile via the supervisor'son_convergedhook (the hub owns each sub-app's lifespan; Starlette doesn't run mounted lifespans). There is no special-case name —allis just a conventional entry with members"*". The registry is validated at write time and again at startup (registry.validate_at_startupfails the boot on an unknown member id, naming the offending group + server); an unknown group name 404s at request time and an empty group serves a valid tool-less bundle. Auth runs through the sameenforce()with a syntheticgroup:<name>pseudo-server: bearer requires a matchinggroup:<name>-scoped (orall) token, and members stricter than the default provider are excluded when the default isnone. There is no/s/all— single servers live only under/s/<slug>, groups only under/g/<name>, soallis now an ordinary server slug. - Auth (
auth/): two independent layers per request — a Host/Origin allowlist middleware (DNS-rebinding defense) plus pluggable per-server bearer auth on/sand control-plane bearer auth that gates the sensitive/apirouters only when enforcement is on (defaultauto: when the box is exposed off-host);/api/health*and/api/auth/statusstay public. See README "Security" for the full model. - Multi-user control plane (
auth/principal.py,auth/policy.py,api/users.py): WHO is resolved in exactly one place (principal.resolve— enforcement off ⇒ synthetic local admin,MCPE_ADMIN_TOKEN⇒ env admin, a user-less control token ⇒ legacy admin, a user-bound one ⇒ that user's role/flags) and WHAT they may do lives entirely inpolicy(server/token visibility, the local-runner permission, member token-scope limits) — routers call those predicates, never re-derive rules. Users hold no passwords: credentials arecontroltokens bound viaToken.user_id;Server.owner_id(NULL = admin-owned, the upgrade default) drives visibility, and non-visible resources 404 like nonexistent ones. Ownership is identity, not launch config — it stays out ofconfig_hash, so reassigning never bounces a bridge. This is authorization, not isolation: local runners execute as the process user (README "Security", trust caveat). - Catalog (
catalog/): backend proxies public MCP directories (official registry, Glama) into reviewable launch specs; the SPA stays same-origin. - Frontend (
frontend/src/): SvelteKit (Svelte 5) SPA,adapter-static, no SSR — rendered entirely in the browser, served by the backend catch-all.
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.
- 5d ago First seen · 140 lines · 2,626 tokens per session scan A 3c20364bf40d
mcpelevator CLAUDE.md is an instructions file published in the GitHub repository pacnpal/mcpelevator (5 stars, last pushed 13d ago), licensed MIT. It adds 2,626 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
moira AGENTS.md
AGENTS.md instructions for moira-mcp/moira, covering agents.md, what moira is, repository layout, build & run (fresh clone) and image: line and uncomment the build: block, then.
moira CLAUDE.md
Claude Code instructions for moira-mcp/moira, a project described as: Agent Workflow Engine for AI agents over MCP — per-step directives, completion conditions, and JSON-Schema validation. Self-hostable (Apache-2.0).
full-stack-ai-agent-template CLAUDE.md
Claude Code instructions for vstorm-co/full-stack-ai-agent-template, covering claude.md, project overview, commands, install dependencies and run tests.
meme-search CLAUDE.md
Instructions for neonwatty/meme-search, covering claude.md, 📁 file organization guidelines, 🤖 task agent usage guidelines, when to use task agents and documentation lookup pattern.
ProductFlow AGENTS.md
AGENTS.md instructions for yuqie6/ProductFlow, covering trellis instructions, repository guidelines, project structure & module organization, build, test, and development commands and coding style & naming conventions.
better-notion-mcp AGENTS.md
AGENTS.md instructions for n24q02m/better-notion-mcp, covering agents.md - better-notion-mcp, build / lint / test commands, run a single test file, run a single test by name and mise shortcuts.