Home/Servers/SQLite MCP Server

SQLite MCP Server

by Anthropic ยท โญ 1.9k stars ยท updated 3 months ago

SQLite database interaction and business intelligence. Query databases, create tables, run analytics, and explore data through natural language with your AI assistant.

87
Very Good

Quality Score Breakdown

maintenance88/100
community85/100
documentation88/100
compatibility87/100

Use Cases

  • โœ“query SQLite databases
  • โœ“run SQL
  • โœ“data analytics
  • โœ“create tables

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sqlite",
        "--db-path",
        "/path/to/database.db"
      ]
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sqlite",
        "--db-path",
        "/path/to/database.db"
      ]
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "sqlite": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-sqlite",
          "--db-path",
          "/path/to/database.db"
        ]
      }
    }
  }
}
โ† Back to all servers