home / mcp / sqlite mcp server
Provides an SQLite MCP server to list tables and run SELECT queries via MCP client tools.
Configuration
View docs{
"mcpServers": {
"santos-404-mcp-server.sqlite": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v",
"mcp-test:/mcp",
"mcp/sqlite",
"--db-path",
"test_db.sqlite3"
]
}
}
}Lists all tables in the connected SQLite database, enabling you to see the current schema and plan queries.
Executes SELECT queries against the SQLite database to retrieve data and verify results.