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/michaelalber/grounded-code-mcp/claude-mdgit clone --depth 1 https://github.com/michaelalber/grounded-code-mcpWrote 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/michaelalber/grounded-code-mcp/claude-md)<a href="https://agentmods.dev/instructions/michaelalber/grounded-code-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/michaelalber/grounded-code-mcp/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.03429 | $0.03429 |
| Opus 5 | $0.01715 | $0.01715 |
| Sonnet 5 | $0.00686 | $0.00686 |
| Haiku 4.5 | $0.00343 | $0.00343 |
Grade B, and why
grounded-code-mcp CLAUDE.md scanned grade B with 1 finding 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 2d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo launchctl kickstart -k system/<launchdaemon-label> How it starts
The opening of the file, as written. The whole thing — 212 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.
Global rules (TDD, security, quality gates, Python standards, AI behavior) are in
~/.claude/CLAUDE.mdand apply here automatically. This file contains only what is specific to this project.
Project Overview
- Name: grounded-code-mcp
- Purpose: Local MCP server providing RAG over a persistent knowledge base of vetted technical documentation; eliminates hallucination by grounding AI coding assistant responses in authoritative sources.
- Phase: Maintain
- Jira project key: N/A — tracked via GitHub issues
- Confluence space: N/A
- Definition of success: Any AI coding session using this server produces grounded, citation-backed responses with zero reliance on training-data guesses for covered domains.
Technology Stack
- Language: Python 3.10–3.12
- Framework: FastMCP (<3) for MCP server; Click + Rich for CLI
- Vector store: Qdrant (primary), ChromaDB (fallback)
- Document parsing: Docling ≥2.70.0
- Embeddings: Ollama — model:
snowflake-arctic-embed2(1024-dim, 8192-token context) - Configuration: TOML + Pydantic v2
- Test framework: pytest + pytest-asyncio + pytest-cov
- CI/CD: GitHub Actions —
.github/workflows/ci.yml(lint, type-check, test matrix 3.10–3.12, dep-audit) +security.yml(Semgrep, Bandit, CodeQL, Trivy) - Package manager: pip / hatchling build; runtime install via pipx
Architecture
- Pattern: Ingest pipeline → vector search → MCP tool layer. Transport is stdio (default) or HTTP (local only, binds
127.0.0.1). - Entry points:
src/grounded_code_mcp/__main__.py— Click CLI (ingest,convert,serve,status,search)src/grounded_code_mcp/server.py— FastMCP server and all MCP tool handlers
- Key directories:
src/grounded_code_mcp/— production source (8 pipeline modules)tests/— pytest unit tests; integration tests marked@pytest.mark.integrationsources/— knowledge base documents organised by collection subdirectory.grounded-code-mcp/— runtime data: Qdrant storage,manifest.jsonscripts/— utility scripts (doc downloaders).github/workflows/— CI definitions
- Non-obvious constraints:
- CLI is installed via pipx, not
.venv. After any code change runpipx install ".[all]" --force. - Ollama must be running with
snowflake-arctic-embed2pulled before ingest or search. - Qdrant must be running (Docker Compose or system service) for vector operations.
- Ingest jobs must run sequentially — parallel ingest causes OOM. Never run two collections simultaneously.
- Collection names in queries use the bare suffix (e.g.,
"rust"); the server prependsgrounded_automatically. - Machine-specific config (Ollama host, Qdrant URL, port overrides) belongs in
~/.config/grounded-code-mcp/config.toml, never in the committedconfig.toml. convertruns Docling on binary sources and writesfoo.pdf.mdsidecars. Run beforeingeston GPU machines;ingestthen reads the sidecar and skips Docling entirely.flash-attnis not inpyproject.toml— manual install only:pip install flash-attn --no-build-isolation. Requires CUDA toolkit + Ampere+ GPU. Enable viacuda_use_flash_attention2 = truein[docling].
- CLI is installed via pipx, not
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.
- 2d ago First seen · 212 lines · 3,429 tokens per session scan B 995353596492
grounded-code-mcp CLAUDE.md is an instructions file published in the GitHub repository michaelalber/grounded-code-mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 3,429 tokens to every session, about $0.0171 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
pfsense-mcp-server AGENTS.md
Instructions for night4me/pfsense-mcp-server, covering pfsense mcp server, architecture and security, development workflow, long-running validation and test parallelism.
mcp-local-llm AGENTS.md
Instructions for aplaceforallmystuff/mcp-local-llm, covering agents.md - mcp-local-llm, tech stack, architecture, development commands and environment variables.
clawstash CLAUDE.md
Claude Code instructions for fo0/clawstash, covering claude.md -- project guide, session start -- read order, workflow triggers, output languages and performance / modes.
sui-mcp CLAUDE.md
Claude Code instructions for 0xfreak0/sui-mcp, covering sui-mcp, stack, architecture, which transport to use and archive fallback.
datadog-mcp CLAUDE.md
Instructions for dreamiurg/datadog-mcp, covering agent instructions, project, stack, commands and releases.
clawstash AGENTS.md
AGENTS.md instructions for fo0/clawstash, covering agents.md — agent guide and gitnexus — read-only analysis policy (non-negotiable).