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/kosminus/querywise-mcp/claude-mdgit clone --depth 1 https://github.com/kosminus/querywise-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/kosminus/querywise-mcp/claude-md)<a href="https://agentmods.dev/instructions/kosminus/querywise-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/kosminus/querywise-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.01347 | $0.01347 |
| Opus 5 | $0.00674 | $0.00674 |
| Sonnet 5 | $0.00269 | $0.00269 |
| Haiku 4.5 | $0.00135 | $0.00135 |
Grade A, and why
querywise-mcp 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 3d 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 — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Project Overview
querywise-mcp — an MCP server + CLI for querying databases in natural
language through a semantic metadata layer. Refactored from the QueryWise
full-stack app (../querywise): the FastAPI web layer and React frontend are
gone; the metadata store moved from Postgres+pgvector to embedded
SQLite + sqlite-vec. The semantic layer, LLM agents, and connectors are
ported largely unchanged.
Tech Stack
- Python 3.11+, MCP Python SDK (FastMCP), Typer (CLI)
- SQLAlchemy (async) + aiosqlite + sqlite-vec for the metadata store
- Target connectors: SQLite (read-only), PostgreSQL (asyncpg), BigQuery, Databricks
- LLM: provider-agnostic (Anthropic, OpenAI, Ollama) — only needed for
ask/generate_sqland cloud embeddings
How to Run
pip install -e ".[llm]" # install (drop [llm] for keyword-only)
querywise init # create the SQLite store
querywise serve # MCP server over stdio (--http for Streamable HTTP)
querywise ask <conn> "<question>" # full pipeline via CLI
Entry points (pyproject.toml): querywise → cli:app, querywise-mcp → server:main.
Layout
src/querywise_mcp/
├── config.py # pydantic-settings; resolved_database_url() -> sqlite path
├── server.py # FastMCP: 25 tools + schema resource + text_to_sql prompt; stdio/http
├── cli.py # Typer CLI (ask, sql, context, connections, serve, seed-sample)
├── db/ # SQLite metadata store
│ ├── session.py # async engine; loads sqlite-vec via await_only in connect event; WAL
│ ├── types.py # Embedding TypeDecorator (list[float] <-> float32 BLOB)
│ ├── vectors.py # knn(): vec_distance_cosine when loaded, else in-process cosine
│ ├── init.py # init_db() create_all + embedding-dimension reconciliation (no Alembic)
│ └── models/ # ORM models (generic types: Uuid, JSON, Embedding)
├── semantic/ # context_builder, schema_linker, glossary_resolver, prompt_assembler
├── llm/ # providers (anthropic/openai/ollama), agents, router, prompts
├── services/ # query_service, connection_service, schema_service,
│ # embedding_service, knowledge_service, semantic_service, setup_service
├── connectors/ # base + sqlite/postgresql/bigquery/databricks + registry
├── core/exceptions.py
└── utils/sql_sanitizer.py
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.
- 3d ago First seen · 103 lines · 1,347 tokens per session scan A 5051629bcef0
querywise-mcp CLAUDE.md is an instructions file published in the GitHub repository kosminus/querywise-mcp (2 stars, last pushed 3mo ago), licensed MIT. It adds 1,347 tokens to every session, about $0.0067 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
tiger-slack CLAUDE.md
Instructions for timescale/tiger-slack, covering tiger slack - ai-powered slack analytics platform, architecture overview, development commands, service management and database access.
tai42-mcp-dynamic-postgres AGENTS.md
AGENTS.md instructions for tai42ai/tai42-mcp-dynamic-postgres, covering agents.md, commits, build, test, lint, comments and docs and rules.
unifi-mcp AGENTS.md
AGENTS.md instructions for sirkirby/unifi-mcp, covering project rules, non-goals, architecture rules, layering and singletons.
trace-mcp CLAUDE.md
Instructions for nikolai-vysotskyi/trace-mcp, covering trace-mcp development guide, what this project is, agent behavior — read before every task, no flattery, no filler and disagree when the premise is wrong.
fava-trails CLAUDE.md
Instructions for MachineWisdomAI/fava-trails, covering fava trails development, where to work, worktree conventions, ci requirements and local development.
counterpoise-ledger CLAUDE.md
Instructions for jeffjjohnston/counterpoise-ledger, covering claude.md, project overview, development commands, essential commands and testing.