Mcp Server Sqlite
@ofershap
About Mcp Server Sqlite
MCP server for SQLite — query databases, inspect schemas, explain queries
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"sqlite": {
"command": "npx",
"args": [
"-y",
"mcp-sqlite-server"
]
}
}
}Tools
5Execute a SQL query against a SQLite database. Returns results as a formatted table. Read-only by default.
Get the schema of a SQLite database: all tables with columns and row counts.
Get detailed info about a single table: columns, types, constraints, and row count.
Explain the query plan for a SQL query (EXPLAIN QUERY PLAN). Helps optimize queries.
List all SQLite database files (.db, .sqlite, .sqlite3) in a directory.
Overview
What is Mcp Server Sqlite?
Mcp Server Sqlite is a TypeScript Model Context Protocol server that lets AI assistants query SQLite databases, inspect schemas, and explain queries. It is read-only by default for safety and works with any MCP client (Claude Desktop, Cursor, VS Code Copilot, etc.) by reading local .db files with no authentication required.
How to use Mcp Server Sqlite?
Run npx mcp-sqlite-server to start the server, then configure it in your MCP client by adding a server entry with command "npx" and arguments ["mcp-sqlite-server"]. No additional installation steps are needed.
Key features of Mcp Server Sqlite
- Execute SQL queries (SELECT, PRAGMA, EXPLAIN, WITH) via the
querytool. - Retrieve full schema with tables, columns, types, and row counts via
schema. - Get detailed table info including constraints and row counts via
table_info. - Run EXPLAIN QUERY PLAN to optimize queries via
explain. - List
.db,.sqlite, and.sqlite3files in a directory vialist_databases. - Read-only by default; optional write mode via
readonly=false.
Use cases of Mcp Server Sqlite
- Explore database schema and contents directly from an AI assistant.
- Run SQL queries on local SQLite databases during development without switching tools.
- Analyze and optimize query performance using EXPLAIN QUERY PLAN.
- Discover all SQLite files in a project directory.
FAQ from Mcp Server Sqlite
What is the default safety mode?
Read-only by default. The query tool only accepts SELECT, PRAGMA, EXPLAIN, and WITH statements in readonly mode.
How does it differ from the official MCP SQLite server?
The official reference is Python-only. This server is built with TypeScript/Node.js, making it a natural fit for TypeScript and Node.js environments.
What runtime is required?
Node.js and npm (npx) are required to run the npx mcp-sqlite-server command.
What authentication or transport does it use?
No authentication is needed. It reads local .db files and uses the standard stdio transport for MCP.
Can I enable write operations?
Yes. Set readonly=false in the tool arguments to allow INSERT, UPDATE, DELETE, and other write statements.
Frequently asked questions
What is the default safety mode?
Read-only by default. The `query` tool only accepts SELECT, PRAGMA, EXPLAIN, and WITH statements in readonly mode.
How does it differ from the official MCP SQLite server?
The official reference is Python-only. This server is built with TypeScript/Node.js, making it a natural fit for TypeScript and Node.js environments.
What runtime is required?
Node.js and npm (npx) are required to run the `npx mcp-sqlite-server` command.
What authentication or transport does it use?
No authentication is needed. It reads local `.db` files and uses the standard stdio transport for MCP.
Can I enable write operations?
Yes. Set `readonly=false` in the tool arguments to allow INSERT, UPDATE, DELETE, and other write statements.
Basic information
More Databases MCP servers

Sqlite
modelcontextprotocolModel Context Protocol Servers
Redis MCP Server
redisThe official Redis MCP Server is a natural language interface designed for agentic applications to manage and search data in Redis efficiently
PostgreSQL Model Context Protocol (PG-MCP) Server
stuzeroDbhub
bytebaseZero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
Chroma MCP Server
chroma-coreA Model Context Protocol (MCP) server implementation that provides database capabilities for Chroma
Comments