SQLite MCP
open sourcestdioFull read and write access to a local SQLite database with schema inspection
Updated 2026-02-15
Official MCP server for SQLite databases. Unlike the Postgres MCP (read-only), this server supports full read and write operations, agents can create tables, insert rows, run queries, and inspect schema. Ideal for agents that need lightweight persistent storage without an external database.
Install
uvx mcp-server-sqlite --db-path /path/to/db.sqliteRuntime: python
Tools (6)
read_queryExecute a SELECT query on the SQLite database
query
write_queryExecute an INSERT, UPDATE, or DELETE query on the SQLite database
query
create_tableCreate a new table in the SQLite database
query
list_tablesList all tables in the SQLite database
describe_tableGet the schema information for a specific table
table_name
append_insightAdd a business insight to the memo resource
insight
Use Cases
- ·Give agents a lightweight persistent data store without external dependencies
- ·Enable agents to track state, records, and history across sessions
- ·Build agents that log events, store results, or maintain queues
- ·Local analytics and reporting with full SQL access
Key Points
- •Full read and write SQL access, unlike Postgres MCP which is read-only
- •No external database required, stores data in a local .sqlite file
- •Python-based, install with uvx or pip
- •Official Anthropic-maintained server
Do-Nothing Score
Find out how close you are to Ghost CEO.