MCP server

SQLite
MCPA local file, a schema, and a query tool.
Official SQLite server. Good for a checkout that already has a .db and should not grow a cloud.
latest·MIT·Updated this quarter·github.com/modelcontextprotocol/servers·Transport: stdio
Claude CodeDesktop
Scanned
claude_desktop_config.json
{
"mcpServers": {
"sqlite": {
"command": "uvx",
"args": [
"mcp-server-sqlite",
"--db-path",
"./app.db"
]
}
}
}Spec
What the server actually exposes.
read_query
readSELECT against the file.
write_query
writeINSERT/UPDATE when you allow it.
list_tables
readSchema inventory.
Guardrails
- Path is an argument
- Writes are a separate tool
mcp-sqlite.mcp/tools
Tools
- read
read_query
SELECT against the file.
- write
write_query
INSERT/UPDATE when you allow it.
- read
list_tables
Schema inventory.
Last call
{ "ok": true,
"tool": "read_query",
"rows": 12 }Other servers worth installing
Discussion
No notes yet. Be the first hunter to report back.