SQLite MCP Server

Query and manage SQLite databases with your AI assistant

By Anthropic (official) ★ 2.8K stars official database sql local

The SQLite MCP Server connects Claude to local SQLite databases. Great for data analysis on local datasets, application databases, and quick prototyping. Unlike PostgreSQL, SQLite needs no server — it works directly with .db files on your disk.

Installation & Configuration

Add this block to your claude_desktop_config.json (or your agent framework's MCP config file):

{
  "mcpServers": {
    "sqlite": {
      "command": "uvx",
      "args": ["mcp-server-sqlite", "--db-path", "/path/to/your.db"]
    }
  }
}

Config file location:

Available Tools (6)

Use Cases

Source & Documentation

GitHub Repository: https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite

Protocol: Model Context Protocol (MCP) — modelcontextprotocol.io

← Back to MCP Server Directory