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/quantgeekdev/mcp-framework/claude-mdgit clone --depth 1 https://github.com/QuantGeekDev/mcp-frameworkWhat 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.02151 | $0.02151 |
| Opus 5 | $0.01076 | $0.01076 |
| Sonnet 5 | $0.00430 | $0.00430 |
| Haiku 4.5 | $0.00215 | $0.00215 |
Grade A, and why
mcp-framework 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 yesterday.
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 — 245 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
mcp-framework is a TypeScript framework for building Model Context Protocol (MCP) servers. It provides an opinionated architecture with automatic directory-based discovery for tools, resources, and prompts. The framework is used as a dependency in other projects (similar to Express.js) and runs from node_modules.
Development Commands
Build and Watch
npm run build # Compile TypeScript to dist/
npm run watch # Watch mode for development
Testing
npm test # Run all tests
npm run test:watch # Run tests in watch mode
npm run test:coverage # Run tests with coverage report
Linting and Formatting
npm run lint # Run ESLint
npm run lint:fix # Run ESLint with auto-fix
npm run format # Format code with Prettier
Local Development with yalc
npm run dev:pub # Build and publish to yalc for local testing
CLI Commands (for projects using the framework)
mcp create <project-name> # Create new MCP server project
mcp add tool <tool-name> # Add a new tool
mcp add prompt <prompt-name> # Add a new prompt
mcp add resource <resource-name> # Add a new resource
mcp validate # Validate tool schemas
mcp-build # Build project (used in build scripts)
Architecture
Core Components
-
MCPServer (src/core/MCPServer.ts)
- Main server class that orchestrates everything
- Handles capability detection (tools, prompts, resources)
- Manages transport configuration (stdio, SSE, HTTP stream)
- Loads and validates tools/prompts/resources on startup
- Resolves basePath from config or process.argv[1] or process.cwd()
-
Loaders (src/loaders/)
- ToolLoader, PromptLoader, ResourceLoader
- Automatically discover and load implementations from directories
- Look for files in
<basePath>/tools,<basePath>/prompts,<basePath>/resources - Load from compiled JS in dist/ (not from src/)
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.
- yesterday First seen · 245 lines · 2,151 tokens per session scan A f65a3ed05096
mcp-framework CLAUDE.md is an instructions file published in the GitHub repository QuantGeekDev/mcp-framework (928 stars, last pushed 4mo ago), licensed MIT. It adds 2,151 tokens to every session, about $0.0108 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-30.
Other instructions, from other repositories
MCP-Nest CLAUDE.md
Instructions for rekog-labs/MCP-Nest, covering claude.md, what this repo is, packages, layout and commands.
langfuse-docs AGENTS.md
Instructions for langfuse/langfuse-docs, a project described as: 🪢 Langfuse documentation -- Langfuse is the open source LLM Engineering Platform. Observability, evals, prompt management, playground and metrics to debug and improve LLM apps.
langfuse-docs CLAUDE.md
Instructions for langfuse/langfuse-docs, a project described as: 🪢 Langfuse documentation -- Langfuse is the open source LLM Engineering Platform. Observability, evals, prompt management, playground and metrics to debug and improve LLM apps.
ollama CLAUDE.md
Instructions for ollama/ollama: See AGENTS.md for the shared agent instructions for this repository.
ida-pro-mcp CLAUDE.md
Instructions for mrexodia/ida-pro-mcp, covering claude.md, what this project is, core implementation rules, ida thread safety and api conventions.
pydantic-ai AGENTS.md
Instructions for pydantic/pydantic-ai, covering your primary responsibility is to the project and its users, gathering context on the task, ensuring the task is ready for implementation, philosophy and requirements of all contributions.