PluginBench
MCP Server
Active
MIT

io.github.arifulislamat/database-mcp-sqlite MCP Server

io.github.arifulislamat/database-mcp-sqlite

What is the io.github.arifulislamat/database-mcp-sqlite MCP server?

MCP server for SQLite databases. Read-only by default, row caps, statement timeouts.

How to install io.github.arifulislamat/database-mcp-sqlite

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • SQLITE_PATH
    required

    Path to the SQLite database file

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "database-mcp-sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@database-mcp/sqlite"
      ],
      "env": {
        "SQLITE_PATH": "<YOUR_SQLITE_PATH>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "database-mcp-sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@database-mcp/sqlite"
      ],
      "env": {
        "SQLITE_PATH": "<YOUR_SQLITE_PATH>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "database-mcp-sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@database-mcp/sqlite"
      ],
      "env": {
        "SQLITE_PATH": "<YOUR_SQLITE_PATH>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "database-mcp-sqlite": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@database-mcp/sqlite"
      ],
      "env": {
        "SQLITE_PATH": "<YOUR_SQLITE_PATH>"
      }
    }
  }
}
Claude Code
claude mcp add database-mcp-sqlite --env SQLITE_PATH=<YOUR_SQLITE_PATH> -- npx -y @database-mcp/sqlite

Related MCP servers

MCP server for libSQL/Turso, local or remote. Read-only by default, row caps, timeouts.

5
Python
MIT
View repository →

MCP server for MariaDB. Read-only by default, row caps, timeouts, secrets never logged.

5
Python
MIT
View repository →

MCP server for MySQL. Read-only by default, row caps, statement timeouts, secrets never logged.

5
Python
MIT
View repository →

MCP server for PostgreSQL. Read-only by default, row caps, timeouts, secrets never logged.

5
Python
MIT
View repository →