home / mcp / sqlite mcp server

SQLite MCP Server

Provides an SQLite MCP server to list tables and run SELECT queries via MCP client tools.

Installation
Add the following to your MCP client configuration file.

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"
      ]
    }
  }
}

Available tools

list_tables

Lists all tables in the connected SQLite database, enabling you to see the current schema and plan queries.

read_query

Executes SELECT queries against the SQLite database to retrieve data and verify results.