mcp-database-server CLAUDE.md

mcp-database-server CLAUDE.md is an instructions file for coding agents from ahmetbarut/mcp-database-server. It costs 819 tokens per session, scanned A, original, MIT.

Project instructions for an MCP Database Server, a service that lets AI assistants run SQL queries on SQLite, PostgreSQL, and MySQL databases. It communicates with clients through JSON-RPC over standard input and output.

In plain words
What is it for?
Use them when building, testing, linting, formatting, or type-checking the database server and its TypeScript code.
Why use it?
They explain the repository's structure, commands, module conventions, and test expectations so development follows the project's setup.

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

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 mcp-database-server CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ahmetbarut/mcp-database-server/claude-md.svg)](https://agentmods.dev/instructions/ahmetbarut/mcp-database-server/claude-md)
Your own site
<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>
Per session 819 This file is loaded in full into every session.
When invoked 819 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.00819 $0.00819
Opus 5 $0.00409 $0.00409
Sonnet 5 $0.00164 $0.00164
Haiku 4.5 $0.00082 $0.00082

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

Security

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.

CLAUDE.md · 54 lines

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 BaseDatabaseDriver defining 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.tsDatabaseConnectionManager manages multiple named connections, tracks status, handles retries.
  • src/config/settings.tsConfigManager loads database configs from: (1) DATABASE_CONNECTIONS_FILE env var pointing to a JSON file, (2) DATABASE_CONNECTIONS env var with inline JSON, (3) individual env vars like SQLITE_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 (MCPDatabaseError and subclasses), helper utilities.

Read the full file on GitHub · 54 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. 4d ago First seen · 54 lines · 819 tokens per session scan A 4fb076eb52dc

Subscribe to this mod's changes

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.