MCP server

SQLite

MCP

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

By Model Context Protocol

Spec

What the server actually exposes.

  • read_query

    read

    SELECT against the file.

  • write_query

    write

    INSERT/UPDATE when you allow it.

  • list_tables

    read

    Schema inventory.

Guardrails

  • Path is an argument
  • Writes are a separate tool

mcp-sqlite.mcp/tools

Tools

  • read_query

    SELECT against the file.

    read
  • write_query

    INSERT/UPDATE when you allow it.

    write
  • list_tables

    Schema inventory.

    read

Last call

{ "ok": true,
  "tool": "read_query",
  "rows": 12 }

Other servers worth installing

Discussion

No notes yet. Be the first hunter to report back.