Back to MCP Servers

SQLite Server

Interact with SQLite databases for queries, schema inspection, and data analysis

databasesqlitesqlofficial

Installation

npm install -g @anthropic-ai/mcp-server-sqlite

Configuration

{
  "mcpServers": {
    "sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@anthropic-ai/mcp-server-sqlite",
        "--db-path",
        "/path/to/your/database.db"
      ]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes
View source on GitHub