Borrowing it
Nothing to install: this file belongs to bojanrajkovic/mcp-paprika. 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/bojanrajkovic/mcp-paprika/main/CLAUDE.mdgit clone --depth 1 https://github.com/bojanrajkovic/mcp-paprikaWrote 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/bojanrajkovic/mcp-paprika/claude-md)<a href="https://agentmods.dev/instructions/bojanrajkovic/mcp-paprika/claude-md"><img src="https://agentmods.dev/badge/instructions/bojanrajkovic/mcp-paprika/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/bojanrajkovic/mcp-paprika/claude-md"><img src="https://agentmods.dev/badge/instructions/bojanrajkovic/mcp-paprika/claude-md.svg" alt="Reviewed on agentmods" width="80" 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.02875 | $0.02875 |
| Opus 5 | $0.01437 | $0.01437 |
| Sonnet 5 | $0.00575 | $0.00575 |
| Haiku 4.5 | $0.00287 | $0.00287 |
Grade A, and why
mcp-paprika 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 12d 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 — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — AI Agent Index
Keep this file lean. It is the project-wide pointer index for agents. Detailed docs live under
docs/; the human dev workflow lives inCONTRIBUTING.md; the rules that govern the doc system live indocs/documentation-system.md. When you change a feature, update its architecture doc or the relevant directoryCLAUDE.md, not this index.
Project
mcp-paprika — an MCP server for the Paprika recipe manager. Two transports, selected by MCP_TRANSPORT: stdio (default; unauthenticated local pipe for Claude Desktop/Code, Cursor, mcp-cli) and Streamable HTTP (remote clients; OAuth 2.1 + OIDC delegation). See docs/architecture.md for the shape and docs/adr/ for the decisions behind it.
Tech stack
TypeScript 6 (ESM, @tsconfig/strictest) on Node.js 24 (mise-managed), pnpm via corepack. MCP via @modelcontextprotocol/sdk; HTTP via hono; validation via zod; errors via neverthrow; resilience via cockatiel; logging via pino; image normalization via sharp. The full dependency set lives in package.json and is not re-listed here. Ships as a distroless container (3-stage Dockerfile).
Commands
pnpm dev · pnpm build · pnpm test · pnpm typecheck · pnpm lint · pnpm format. Full reference and dev setup: CONTRIBUTING.md.
Fresh git worktree: run pnpm install --ignore-scripts once before anything else, or lefthook's prepare step (lefthook install) makes every pnpm / git commit / git push fail (mechanism in CONTRIBUTING.md).
The source tree is a typed composition kernel over self-registering domain modules (ADR-0009).
src/index.ts,src/transport/— transport dispatch and the stdio / Streamable-HTTP entry points; each transport assembles the kernelInfraand callsbuildKernel.src/kernel/— the composition substrate:defineModule/register, the declaration-mergedDomainRegistry,buildKernel(dependency-ordered construction, the sync driver, boot phases), and the generated module barrel. Seesrc/kernel/CLAUDE.mdanddocs/adr/0009-domain-isolated-tool-modules-kernel.md.src/domains/<domain>/— one directory per cohesive domain (recipe, grocery, menu, meal, meal-type, pantry, aisle, meal-planner): itsmodule.ts+api.ts, itsids.tsbranded-UID leaf (kind-safe FKs; imports nothing but zod, one owning leaf per brand — ADR-0016), its defining entity'stypes.ts/store.tsat the root (adisk.tsonly when the cache carries behavior, e.g. recipe's), any additional owned entity in an<entity>/subdir, and co-locatedtools/,resources/, and the reconcile (sync.ts, or asyncs/dir when there are several), with tests beside them. Seesrc/domains/CLAUDE.md.src/features/<feature>/— kernel modules that are optional features, not data domains: semantic search (discover) and AI photo generation (photo-gen). Seesrc/features/CLAUDE.md.src/shared/— the few genuinely cross-cutting tool helpers: the MCPtextResultenvelope + the uid-or-text lookup abstraction (tools.ts), the SSRF-guarded image fetch (photo-fetch.ts), and theresourceNotFoundboundary helper (resources.ts). Seesrc/shared/CLAUDE.md.src/server/— the composition root's remaining pieces: theNotifierabstraction,buildInfraBase+buildBrandedServer, the background sync loop, and the cross-entity index-event seam. Seesrc/server/CLAUDE.md.src/paprika/— the Paprika cloud-sync HTTP client andsyncReplaceAllEntity(the shared per-module reconcile helper). Wire formats:docs/wire-format.md.src/telemetry/— the OpenTelemetry substrate: the dual-path bootstrap + SDK assembly, vendored semconv constants, the shared instruments, and the Result-native span helper. Recording happens at the seams, not here. Seesrc/telemetry/CLAUDE.mdand ADR-0018.src/entity/— the sharedEntityStorebase class. Seesrc/entity/CLAUDE.md.src/cache/— the persistence layer: per-entityDiskCaches (plus the auth-onlybuildAuthCaches), keeping the in-memory stores warm across restarts. Seesrc/cache/CLAUDE.md.src/auth/— the OAuth 2.1 authorization-server surface; loaded only under the HTTP transport.src/utils/— config (Zod schema), logging, resilience, dates, XDG paths.scripts/,docs/wire-captures/,Dockerfile,.github/workflows/— tooling, sanitized wire captures, container build, CI.
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.
- 12d ago First seen · 80 lines · 2,875 tokens per session scan A 303182bee8d7
mcp-paprika CLAUDE.md is an instructions file published in the GitHub repository bojanrajkovic/mcp-paprika (2 stars, last pushed today), licensed MIT. It adds 2,875 tokens to every session, about $0.0144 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
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).