grounded-code-mcp AGENTS.md

A project-specific instruction file for grounded-code-mcp, a local server that lets coding assistants search trusted technical documents. It also records the project's purpose, tools, structure, and working rules such as TDD, or test-driven development.

In plain words
What is it for?
Use it when working on grounded-code-mcp so responses and code changes follow its architecture, technology choices, testing rules, and security requirements.
Why use it?
It gives the assistant the project's context and standards, reducing guesses about how the codebase works or how changes should be made.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/michaelalber/grounded-code-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/michaelalber/grounded-code-mcp

Made for: Codex, OpenCode.

Per session 2,685 This file is loaded in full into every session.
When invoked 2,685 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.02685 $0.02685
Opus 5 $0.01342 $0.01342
Sonnet 5 $0.00537 $0.00537
Haiku 4.5 $0.00268 $0.00268

Measured yesterday against content hash a5aada6f7447, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

grounded-code-mcp AGENTS.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.

AGENTS.md · 185 lines

How it starts

The opening of the file, as written. The whole thing — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.

grounded-code-mcp — Project Context

Global rules (TDD, security, quality gates, Python standards, AI behavior) are in ~/.config/opencode/AGENTS.md and 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, 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.integration
    • sources/ — knowledge base documents organised by collection subdirectory
    • .grounded-code-mcp/ — runtime data: Qdrant storage, manifest.json
    • scripts/ — utility scripts (doc downloaders)
    • .github/workflows/ — CI definitions
  • Non-obvious constraints:
    • CLI is installed via pipx, not .venv. After any code change run pipx install ".[all]" --force.
    • Ollama must be running with snowflake-arctic-embed2 pulled 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 prepends grounded_ automatically.
    • Machine-specific config (Ollama host, Qdrant URL, port overrides) belongs in ~/.config/grounded-code-mcp/config.toml, never in the committed config.toml.
    • Flash Attention 2 (optional, GPU-only): pip install flash-attn --no-build-isolation Requires CUDA toolkit and an Ampere+ GPU (RTX 30xx/40xx, A100, H100). Enable in config.toml: cuda_use_flash_attention2 = true under [docling].

Read the full file on GitHub · 185 lines

Changes

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.

  1. yesterday First seen · 185 lines · 2,685 tokens per session scan A a5aada6f7447

Subscribe to this mod's changes

grounded-code-mcp AGENTS.md is an instructions file published in the GitHub repository michaelalber/grounded-code-mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 2,685 tokens to every session, about $0.0134 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.