querywise-mcp CLAUDE.md

querywise-mcp CLAUDE.md is an instructions file for coding agents from kosminus/querywise-mcp. It costs 1,347 tokens per session, scanned A, original, MIT.

A project guide for QueryWise MCP, a server and command-line tool that lets users ask database questions in everyday language through a metadata layer.

In plain words
What is it for?
It is for setting up the metadata store, starting the server, connecting to supported databases, asking questions, and generating SQL.
Why use it?
It describes how the tool connects questions to databases and generates answers or SQL without requiring users to write every query themselves.

Instructions file

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/kosminus/querywise-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/kosminus/querywise-mcp

Wrote 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.

agentmods badge for querywise-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/kosminus/querywise-mcp/claude-md.svg)](https://agentmods.dev/instructions/kosminus/querywise-mcp/claude-md)
Your own site
<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>
Per session 1,347 This file is loaded in full into every session.
When invoked 1,347 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.01347 $0.01347
Opus 5 $0.00674 $0.00674
Sonnet 5 $0.00269 $0.00269
Haiku 4.5 $0.00135 $0.00135

Measured 3d ago against content hash 5051629bcef0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 103 lines

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_sql and 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): querywisecli:app, querywise-mcpserver: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

Read the full file on GitHub · 103 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. 3d ago First seen · 103 lines · 1,347 tokens per session scan A 5051629bcef0

Subscribe to this mod's changes

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.