sqlite-guard-mcp

sqlite-guard-mcp

Enables AI agents to safely work with SQLite databases by enforcing read/write separation, dry-run writes with confirmation, automatic backups, and an audit trail.

Category
Visit Server

README

sqlite-guard-mcp

Let an AI agent work on your SQLite database without trusting it. An MCP server with four tools — schema, query, execute, audit_log — and three guarantees:

  1. Reads can't write. query runs on a separate connection opened SQLITE_OPEN_READONLY at the C level. A disguised write (/* just checking */ UPDATE …) isn't caught by a regex — it's refused by SQLite itself. Enforcement by construction, not by inspection.
  2. Writes are dry-run first. execute runs the statement inside a transaction that is always rolled back, and reports what would have happened (changes, lastInsertRowid). Committing requires re-calling with confirm: true — the agent must state its intent twice, and its operator sees the intended effect in between.
  3. Committed writes leave a trail you can walk back. Before any commit, the DB file is snapshotted (VACUUM INTO — transactionally consistent even under WAL with active readers). The write and its append-only audit row commit in the same transaction: you can't end up with a change that has no audit entry, or an audit entry for a change that didn't happen.

Why this exists

I run a personal-finance dashboard whose UI is deliberately read-only — every number in it is edited by AI agents over SQL. That architecture is wonderful (no forms, no write endpoints, agents keep the books) right up until an agent runs a plausible-looking UPDATE with a wrong WHERE clause.

The insight from operating that system: what agent SQL needs isn't a smarter model, it's the same thing human ops needed for decades — read/write separation, a plan/apply step, backups, and an audit log. This server packages those four things behind MCP so any agent (Claude Code, or anything else that speaks MCP) gets them for free on any SQLite file.

Quick start

npm install
npm run demo        # full guardrail walkthrough on a temp DB — 10 seconds, no setup
npm test            # 10 tests: rollback semantics, backup consistency, audit atomicity

Wire it into Claude Code:

claude mcp add sqlite-guard \
  -e SQLITE_GUARD_DB=/path/to/app.db \
  -- npx tsx src/server.ts

Or inspect it interactively: npx @modelcontextprotocol/inspector npx tsx src/server.ts (with SQLITE_GUARD_DB set).

The tools

Tool Contract
schema Every table with columns, types, PKs, row counts — the agent's map.
query Read-only SQL with ? params. Row-capped (SQLITE_GUARD_MAX_ROWS, default 200) so a SELECT * on a big table can't blow out the agent's context window; the real count is always reported.
execute Single write statement with ? params. Dry-run by default → confirm: true to commit (backup + audit). Single-statement only — which also kills ; DROP TABLE piggybacking.
audit_log The append-only trail of every committed write, newest first.

Design notes

  • The dry-run is real execution, not EXPLAIN-based estimation: the statement genuinely runs (triggers, constraints, and all) and is rolled back. What you see is what a commit would do — including the constraint error you'd hit.
  • Restore is one file copy. Backups are plain SQLite files named <db>-backup-<timestamp>; recovery from a bad committed write is cp + restart, and the audit row records exactly which snapshot predates which write.
  • BEGIN/COMMIT from the agent are refused — transaction lifecycle belongs to the guard. Otherwise a stray BEGIN would let a later statement commit the "rolled-back" dry run.
  • The audit table is readable through query on purpose. Transparency beats secrecy here: the agent can review its own history, and the operator can ask the agent to summarize what it changed and when.
  • Statement classification (classify.ts) is labeling, not security. It tags audit rows and error messages; the security boundaries are the connection flag and the transaction protocol. Anything a regex decides, a determined input can undecide.

Limitations (honest ones)

  • Per-table allow/deny lists aren't implemented (SQLite's authorizer API isn't exposed by better-sqlite3); the boundary is per-database. Point the server at a database you intend agents to manage.
  • VACUUM INTO needs SQLite ≥ 3.27 (2019); older builds fall back to a file copy, which is only safe when quiescent.
  • One MCP server = one database file. Run several instances for several files.

Stack

TypeScript · @modelcontextprotocol/sdk (stdio transport) · better-sqlite3 · zod · vitest.

License

MIT © Brandon Ta

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured