sqlite-guard-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sqlite-guard-mcpshow me the audit log for the last 5 writes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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:
Reads can't write.
queryruns on a separate connection openedSQLITE_OPEN_READONLYat 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.Writes are dry-run first.
executeruns the statement inside a transaction that is always rolled back, and reports what would have happened (changes,lastInsertRowid). Committing requires re-calling withconfirm: true— the agent must state its intent twice, and its operator sees the intended effect in between.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.
Related MCP server: SQLite Read-Only MCP Server
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 atomicityWire it into Claude Code:
claude mcp add sqlite-guard \
-e SQLITE_GUARD_DB=/path/to/app.db \
-- npx tsx src/server.tsOr inspect it interactively: npx @modelcontextprotocol/inspector npx tsx src/server.ts
(with SQLITE_GUARD_DB set).
The tools
Tool | Contract |
| Every table with columns, types, PKs, row counts — the agent's map. |
| Read-only SQL with |
| Single write statement with |
| 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 iscp+ restart, and the audit row records exactly which snapshot predates which write.BEGIN/COMMITfrom the agent are refused — transaction lifecycle belongs to the guard. Otherwise a strayBEGINwould let a later statement commit the "rolled-back" dry run.The audit table is readable through
queryon 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 INTOneeds 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceProvides comprehensive SQLite database operations for LLMs with security features, transaction support, and separation of read-only and destructive operations.2213819MIT
- AlicenseAqualityCmaintenanceEnables safe, read-only SQL access to SQLite databases for AI agents, allowing schema exploration and SELECT queries with defense-in-depth protections.3MIT
- AlicenseBqualityBmaintenanceEnables LLM agents to query databases with read-only access, while requiring human approval for writes through a token-based confirmation system.6GPL 3.0
- Flicense-qualityBmaintenanceEnables AI agents to query a SQLite database using natural language through the Model Context Protocol (MCP). Includes security guardrails that block destructive SQL operations.
Related MCP Connectors
Runtime permission, approval, and audit layer for AI agent tool execution.
See, price, and control every tool call your AI agents make: policy checks, cost, and audit tools.
The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Brandon-35/sqlite-guard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server