What is the io.github.rosch100/mcp-sqlite MCP server?
MCP server for SQLCipher 4 encrypted SQLite databases with full CRUD operations and query support
How to install io.github.rosch100/mcp-sqlite
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
DB_PATHrequiredPath to the encrypted SQLite database file
DB_PASSPHRASErequiredsecretPassphrase for decrypting the database
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-sqlite": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/rosch100/mcp-sqlite:0.2.4"
],
"env": {
"DB_PATH": "<YOUR_DB_PATH>",
"DB_PASSPHRASE": "<YOUR_DB_PASSPHRASE>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-sqlite": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/rosch100/mcp-sqlite:0.2.4"
],
"env": {
"DB_PATH": "<YOUR_DB_PATH>",
"DB_PASSPHRASE": "<YOUR_DB_PASSPHRASE>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-sqlite": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/rosch100/mcp-sqlite:0.2.4"
],
"env": {
"DB_PATH": "<YOUR_DB_PATH>",
"DB_PASSPHRASE": "<YOUR_DB_PASSPHRASE>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-sqlite": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/rosch100/mcp-sqlite:0.2.4"
],
"env": {
"DB_PATH": "<YOUR_DB_PATH>",
"DB_PASSPHRASE": "<YOUR_DB_PASSPHRASE>"
}
}
}
}Claude Code
claude mcp add mcp-sqlite --env DB_PATH=<YOUR_DB_PATH> --env DB_PASSPHRASE=<YOUR_DB_PASSPHRASE> -- docker run -i --rm ghcr.io/rosch100/mcp-sqlite:0.2.4Related MCP servers
MCP server for encrypted SQLite databases (SQLCipher 4) - Works with MoneyMoney, KeePass and more
View repository →