SQLite MCP Server
A Model Context Protocol (MCP) server that enables AI clients to interact with a SQLite database (in-memory or file-based) via a full suite of SQL tools and resources.
Data Querying
read_query— Execute read-only SQL (SELECT,WITH/CTEs,EXPLAIN) to fetch and inspect data
Data Modification
write_query— RunINSERT,UPDATE,DELETE, orREPLACEstatements; returns affected row count
Table Management
create_table— Create new tables with fullCREATE TABLESQLdrop_table— Permanently drop a table (irreversible)list_tables— List all user-created tablesdescribe_table— Inspect a table's columns, types, constraints, indexes, and foreign keys
Knowledge & Insights
append_insight— Record business insights or analytical observations into a persistent memo resource (memo://insights)
Resources & Prompts
Access the full database schema via the
sqlite://{db}/schemaresourceUse the built-in
mcp-demoprompt for a guided walkthrough of creating tables, inserting data, and querying
Transport & Deployment
Connect via stdio (for Claude Desktop, Cursor, etc.) or Streamable HTTP (for remote clients)
Deploy with Docker for containerized access
Secure HTTP with bearer-token authentication (
MCP_AUTH_TOKEN), configurable host/port, and DNS-rebinding protectionBuilt-in query validation and injection prevention
Supports containerized deployment of the SQLite MCP server for easier distribution and deployment
Provides SSE connection capabilities for n8n workflows, allowing n8n to interact with the SQLite database through the MCP client node
Supports deployment on Railway platform through Nixpacks building process
Supports deployment on Render platform through Nixpacks building process
Provides SQLite database operations including executing SQL queries, managing tables, and tracking business insights through standardized MCP tools
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 MCP Servershow me the last 10 orders from the customers table"
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 MCP Server
A Model Context Protocol (MCP) server that provides SQLite database operations. Supports both stdio (for Claude Desktop, Cursor, etc.) and Streamable HTTP (for remote clients) transports.
Features
In-memory or file-based SQLite database
Dual transport: stdio and Streamable HTTP
SQL operations with input validation and injection protection
Table management (CREATE, DROP, LIST, DESCRIBE)
Database schema exposed as an MCP resource
Business insights memo tracking
Docker support
Related MCP server: SQLite MCP Server
Quick Start
Stdio (Claude Desktop, Cursor, etc.)
npm install && npm run build
node build/index.jsAdd to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"sqlite": {
"command": "node",
"args": ["/path/to/sqlite-mcp-server/build/index.js"]
}
}
}With a file-based database:
{
"mcpServers": {
"sqlite": {
"command": "node",
"args": ["/path/to/sqlite-mcp-server/build/index.js", "/path/to/database.db"]
}
}
}Streamable HTTP (remote clients)
node build/index.js --httpThe server exposes a single endpoint at http://localhost:3000/mcp following the MCP Streamable HTTP specification. By default it binds to 127.0.0.1. To reach it from another host or a container, set HOST=0.0.0.0 — but read the Security section first: the HTTP transport has no authentication.
Docker
docker build -t sqlite-mcp-server .
docker run -d -p 3000:3000 -e HOST=0.0.0.0 --name sqlite-mcp sqlite-mcp-serverHOST=0.0.0.0 is required so the server is reachable through the published port. Connecting from the host via localhost:3000 works out of the box; to reach it under any other hostname, add that host to MCP_ALLOWED_HOSTS.
Configuration
Option | Description | Default |
| Use Streamable HTTP transport instead of stdio | stdio |
First non-flag argument | Path to SQLite database file |
|
| Database path (env var alternative) |
|
| HTTP server port (HTTP mode only) |
|
| Interface to bind in HTTP mode. Use |
|
| Comma-separated |
|
| Bearer token required on all | (none) |
Examples:
# In-memory database on stdio
node build/index.js
# File-based database on stdio
node build/index.js ./data.db
# HTTP mode with custom port
PORT=8080 node build/index.js --http ./data.db
# Using environment variable
SQLITE_DB_PATH=./data.db node build/index.js --httpAvailable Tools
Tool | Description |
| Execute SELECT, WITH (CTE), or EXPLAIN queries |
| Execute INSERT, UPDATE, DELETE, or REPLACE queries |
| Create a new table with a CREATE TABLE statement |
| Drop a table (irreversible) |
| List all user-created tables |
| Get table schema: columns, indexes, and foreign keys |
| Add a business insight to the memo resource |
Resources
URI | Description |
| Full schema (CREATE statements) for all tables |
| Accumulated business insights from analysis |
Prompts
Name | Description |
| Guided walkthrough: creates tables, inserts sample data, runs queries for a given topic |
Remote Connection
Streamable HTTP
Connect any MCP-compatible client to http://your-host:3000/mcp. The server supports:
POST /mcp— send MCP messages (session created on initialize)GET /mcp— SSE stream for session resumabilityDELETE /mcp— terminate a sessionGET /health— health check endpoint
Sessions are managed via the Mcp-Session-Id header.
Authentication
Set MCP_AUTH_TOKEN to require a bearer token on every /mcp request (/health stays open):
MCP_AUTH_TOKEN=$(openssl rand -hex 32) HOST=0.0.0.0 node build/index.js --httpClients then send Authorization: Bearer <token>. When MCP_AUTH_TOKEN is unset, authentication is disabled — fine for a localhost-only bind, but do not expose the server publicly without it.
Security
Query validation: each tool only accepts its intended SQL statement type
Multi-statement injection blocked: stacked statements are rejected, with string literals and comments stripped before the check
Table names validated against
^[a-zA-Z_][a-zA-Z0-9_]*$Foreign keys enabled by default
HTTP transport binds to
127.0.0.1by default, with DNS-rebinding protection (MCP_ALLOWED_HOSTS)Optional bearer-token auth on the HTTP transport via
MCP_AUTH_TOKEN(timing-safe check)
Set MCP_AUTH_TOKEN before exposing the HTTP transport beyond localhost. For production, also front it with a reverse proxy that terminates TLS. See SECURITY.md for the full model and how to report a vulnerability.
Development
npm install
npm run build
npm test # build + run the validator test suite
npm start # stdio mode
npm run start:http # HTTP modeLicense
Maintenance
Tools
Latest Blog Posts
- 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/etugrand/sqlite-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server