Scenario guide

Best SQLite MCP Servers in 2026

SQLite is the zero-infrastructure database: no server, no credentials, just a file. That makes SQLite MCP servers the safest way to experiment with agent-driven data access — worst case, you are pointing the agent at a disposable file.

They are ideal for local analysis, prototyping queries before pointing at production, and working with the mountains of .db files tools leave behind. The ranking below is ordered by adoption.

21results
GP
gentleman-programming/engram
Developer tools

Persistent memory system for AI coding agents. Agent-agnostic Go binary with SQLite + FTS5, MCP server, HTTP API, CLI, and TUI.

5K 050
TT
tabularisdb/tabularis
Database management

Open-source desktop SQL workspace for PostgreSQL, MySQL/MariaDB, SQLite and 15+ more databases like DuckDB, ClickHouse, Redis and Firestore.

3.7K 085
BD
bytebase/dbhub
Database management

Token conscious database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.

3.1K 085
DM
dicklesworthstone/mcp_agent_mail
Developer tools

Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite

2K 045
EB
egeominotti/bunqueue
Developer tools

⚡ High-performance job queue for Bun. SQLite by default, PostgreSQL multi-broker when you scale. DLQ, cron, SQLite S3 backups, and native MCP. No Redis.

560 057
CR
cranot/roam-code
Developer tools

Local codebase intelligence CLI + MCP server for AI coding agents: SQLite code graph, 28 languages, 287 commands, 246 MCP tools, change-safety gates, audit evidence, zero API keys.

499 092
RM
runekaagaard/mcp-alchemy
Database management

A MCP (model context protocol) server that gives the LLM access to and knowledge about relational databases like SQLite, Postgresql, MySQL & MariaDB, Oracle, and MS-SQL.

413 092
EM
executeautomation/mcp-database-server
Database management

MCP Database Server is a new MCP Server which helps connect with Sqlite, SqlServer and Posgresql Databases

374 091
JM
jparkerweb/mcp-sqlite
Database management

This is a Model Context Protocol (MCP) server that provides comprehensive SQLite database interaction capabilities.

126 090
HS
hannesrudolph/sqlite-explorer-fastmcp-mcp-server
Developer tools

An MCP server that provides safe, read-only access to SQLite databases through Model Context Protocol (MCP).

107 095
ZD
zhaohb/deskmate
Developer tools

Local-first PC activity recorder for Windows. Captures screenshots, accessibility text, UI events, clipboard activity, and optional audio transcription into a local SQLite database — then exposes...

51 055
MK
miratcan/kaydet
Developer tools

Never lose a solution twice. Terminal note-taking app for developers. CLI notes, work logs, daily journal, with SQLite FTS search and MCP AI integration.

48 090
View all matching entries · 21

FAQ

SQLite or Postgres MCP server for local work?

If your data already lives in Postgres, use the Postgres server. For ad-hoc analysis, CSV imports, and learning, SQLite is the faster start — no setup, and the blast radius of a bad query is one file.

Can the agent create tables and import data?

Most SQLite servers allow writes since the target is usually a scratch database. That makes them great for "import this CSV and analyze it" workflows — the agent handles the schema inference itself.

Does it work with datasets too large for context?

Yes — that is the point. The agent runs aggregations in SQL and only brings summary rows into context, so millions of rows in the file are fine.

Related guides