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/ahmetbarut/mcp-database-server/claude-mdgit clone --depth 1 https://github.com/ahmetbarut/mcp-database-serverWrote 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/ahmetbarut/mcp-database-server/claude-md)<a href="https://agentmods.dev/instructions/ahmetbarut/mcp-database-server/claude-md"><img src="https://agentmods.dev/badge/instructions/ahmetbarut/mcp-database-server/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.00819 | $0.00819 |
| Opus 5 | $0.00409 | $0.00409 |
| Sonnet 5 | $0.00164 | $0.00164 |
| Haiku 4.5 | $0.00082 | $0.00082 |
Grade A, and why
mcp-database-server 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 4d 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 — 54 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.
Project Overview
MCP Database Server (@ahmetbarut/mcp-database-server) — a Model Context Protocol server enabling AI assistants to execute SQL queries across SQLite, PostgreSQL, and MySQL databases. Communicates via JSON-RPC over stdio. Published as an NPM package.
Commands
npm run build # Compile TypeScript (tsc)
npm run dev # Hot-reload dev server (nodemon + ts-node --esm)
npm test # Run all tests (jest)
npm run test:watch # Jest watch mode
npm run test:coverage # Jest with coverage report (80% threshold)
npm run lint # ESLint check
npm run lint:fix # ESLint auto-fix
npm run format # Prettier format
npm run type-check # TypeScript type check without emitting
Run a single test file: npx jest tests/unit/server/mcp-server.test.ts
Architecture
ES Modules throughout — the project uses "type": "module" with ESNext modules. All internal imports use .js extensions (e.g., from './server/index.js').
Core Flow
src/index.ts (CLI entry) → MCPDatabaseServer (src/server/mcp-server.ts) → loads config → initializes database connections → starts MCP stdio transport.
Key Modules
- src/server/mcp-server.ts — Central class
MCPDatabaseServer. Registers MCP request handlers and implements 4 tools:execute_query,list_databases,list_connections,retry_failed_connections. - src/database/base.ts — Abstract
BaseDatabaseDriverdefining the unified driver interface (connect,disconnect,executeQuery,listTables,describeTable, transactions). - src/database/drivers/ — Concrete drivers:
SQLiteDriver(better-sqlite3),PostgreSQLDriver(pg),MySQLDriver(mysql2/promise). - src/database/factory.ts —
DatabaseConnectionManagermanages multiple named connections, tracks status, handles retries. - src/config/settings.ts —
ConfigManagerloads database configs from: (1)DATABASE_CONNECTIONS_FILEenv var pointing to a JSON file, (2)DATABASE_CONNECTIONSenv var with inline JSON, (3) individual env vars likeSQLITE_DB_PATH,POSTGRES_HOST, etc. Validates with Zod. - src/types/ — TypeScript interfaces and Zod schemas for config, database, and MCP protocol types.
- src/utils/ — Winston logger (all logs to stderr; stdout reserved for MCP JSON-RPC), custom exception hierarchy (
MCPDatabaseErrorand subclasses), helper utilities.
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.
- 4d ago First seen · 54 lines · 819 tokens per session scan A 4fb076eb52dc
mcp-database-server CLAUDE.md is an instructions file published in the GitHub repository ahmetbarut/mcp-database-server (5 stars, last pushed 6mo ago), licensed MIT. It adds 819 tokens to every session, about $0.0041 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
MCP-MySQL-Ops copilot-instructions.md
Instructions for call518/MCP-MySQL-Ops, covering mcp mysql operations server - ai coding agent instructions, architecture overview, core components, key patterns and correct - mysql returns uppercase column names.
mcp-pg-db-reader CLAUDE.md
Claude Code instructions for riefer02/mcp-pg-db-reader, covering claude.md, project overview, architecture, running the server and testing.
dbhub copilot-instructions.md
Copilot instructions for bytebase/dbhub: This project provides an MCP server (DBHub) for secure SQL access to the development database.
apple-health-mcp AGENTS.md
Instructions for neiltron/apple-health-mcp, covering repository guidance, project, validate changes, code map and invariants.
MCP-PostgreSQL-Ops copilot-instructions.md
Instructions for call518/MCP-PostgreSQL-Ops, covering architecture overview, core components, key patterns, in functions.py and development workflows.
FalkorDB-MCPServer AGENTS.md
AGENTS.md instructions for FalkorDB/FalkorDB-MCPServer, covering project guidelines, build & install, development, testing and pre-commit checks.