Databases
SQLite MCP
File-based SQL database. Zero setup, zero server process. Perfect for local prototyping, caching, and small datasets. The simplest database MCP server to get running.
100% Pass 🏆Free to Test 🆓Fast ⚡Tested 📅
100% (5/5 tasks)View on GitHubby jparkerweb
README badge
[](https://mcpselect.com/servers/sqlite-mcp/)
Benchmark results
Pass Rate100% (5/5 tasks)
100%(5 tasks)
Speed2ms p502ms p50
Tested OnJun 8, 20268 tools found
| Metric | Value |
|---|---|
| Tools discovered | 8 tools found |
| Scope | Local only |
| Pricing | Free |
| Auth requirement | None. Free to test |
| Verdict | 100% pass rate on 5 tasks |
Install config
Claude Desktop (macOS)
{"mcpServers": {"sqlite": {"command": "npx", "args": ["-y", "mcp-sqlite@latest"], "env": {"SQLITE_DB_PATH": "/path/to/your.db"}}}}Cursor
{"mcpServers": {"sqlite": {"command": "npx", "args": ["-y", "mcp-sqlite@latest"], "env": {"SQLITE_DB_PATH": "/path/to/your.db"}}}}VS Code
// .vscode/mcp.json
{
"servers": {
"sqlite": {
"command": "npx",
"args": ["-y", "mcp-sqlite@latest"],
"env": {
"SQLITE_DB_PATH": "/path/to/your.db"
}
}
}
}Pros
- +Server starts successfully
- +Tools are discoverable
Cons
Best for
Local prototyping, caching, small datasets, offline-first apps
Related servers in Databases
Frequently asked questions
How do I install SQLite MCP?▼
Copy the config above into your AI assistant's MCP settings file:
- Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json - Cursor: Settings → MCP → Add Server
- VS Code:
.vscode/mcp.json
Does it require an API key?▼
No. SQLite MCP is free to test. No API key or signup required. We tested it independently.
How were these results measured?▼
We run each server through a standardized test harness that:
- Installs the server via
npxin a fresh environment - Discovers available tools using the MCP SDK
- Executes real tasks (navigate, click, screenshot, etc.)
- Validates outputs with semantic assertions (not string matching)
- Measures latency percentiles and pass rate
All test scripts are open source on GitHub.