mcp-sqlite
Click on "Deploy 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., "@mcp-sqlitelist all tables in the database"
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.
mcp-sqlite
MCP tool server providing SQLite database access for AI agents.
Tools
Tool | Description |
| Execute SQL queries (read-only by default) |
| List all tables in the database |
| Get the schema/structure of a table |
Related MCP server: mcp-sqlite
Configuration
Variable | Default | Description |
|
| Path to the SQLite database file |
|
| Enforce read-only mode |
|
| HTTP server port |
|
| HTTP server host |
|
| Transport mode: |
Set
SQLITE_READONLY=falseto enable read/write mode (INSERT, UPDATE, DELETE, etc.).
Development
make install # Install dependencies
make server # Run HTTP server
make stdio # Run in stdio mode
make lint # Lint code
make format # Format code
make spec # Run testsUsage with .mcp.json
{
"mcpServers": {
"sqlite": {
"type": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i",
"-v", "/path/to/data.db:/data/data.db:ro",
"-e", "MCP_TRANSPORT=stdio",
"-e", "SQLITE_DB_PATH=/data/data.db",
"ghcr.io/mgcrea/mcp-sqlite"
]
}
}
}Docker
make docker-build
make docker-runThis server cannot be deployed
Maintenance
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
DocBase MCP server for AI agents
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceAn MCP server that enables AI agents to interact with SQLite databases by querying schemas, executing SQL, and inspecting table metadata. It supports safe database access through configurable read-only modes, query timeouts, and dry-run execution plans.MIT
- FlicenseNot gradedqualityDmaintenanceMCP server that provides SQLite database operations. Allows AI assistants to query, modify and manage SQLite databases through the Model Context Protocol.-

@boltstore/mcpofficial
FlicenseNot gradedqualityBmaintenanceMCP server for Boltstore — exposes SQLite database operations as MCP tools for AI agents.-- AlicenseNot gradedqualityCmaintenanceAn MCP server providing SQLite database access for AI agents, enabling SQL execution, schema inspection, CRUD operations, and data export.MIT