MCP Encrypted Sqlite
M

MCP Encrypted Sqlite

An MCP server that supports encrypted SQLite databases, specifically designed for accessing database files encrypted with SQLCipher, providing functions for viewing database structure, querying, and performing CRUD operations, and is compatible with all MCP clients.
2 points
5.8K

What is the Encrypted SQLite Database MCP Server?

This is a tool server specifically designed for accessing encrypted SQLite databases. Through the Model Context Protocol (MCP), AI assistants (such as Cursor and Claude) can securely read and operate on database files encrypted with SQLCipher. Many popular applications (such as MoneyMoney, 1Password, and Signal) use this encryption technology to protect local data.

How to Use the Encrypted SQLite Database MCP Server?

You need to configure an MCP client (such as Cursor or Claude Desktop) to connect to this server. When configuring, you need to provide the path and password of the encrypted database file. The server supports multiple installation methods: one - click installation (Cursor Store), Docker container, or building from source code.

Use Cases

This server is very useful when you need an AI assistant to analyze or query data in a local encrypted database. For example: analyzing financial data in MoneyMoney, querying password entries in 1Password, and viewing chat records in Signal. All operations are performed locally to ensure data security.

Main Features

Encrypted Database Support
Supports SQLite databases encrypted with SQLCipher 4, which is the encryption standard used by many popular applications (such as MoneyMoney, 1Password, and Signal).
Secure Password Management
Supports password storage encrypted with AES - 256 - GCM and can be integrated with the macOS Keychain to ensure password security and prevent leakage.
Database Exploration
Can list all tables, columns, indexes, and schema information in the database to help you understand the database structure.
Query and Operations
Supports SQL queries, data filtering, pagination, insertion, update, and deletion operations, with comprehensive functions.
MCP Protocol Compatibility
Fully compatible with the Model Context Protocol and can be used in all MCP clients (such as Cursor and Claude Desktop).
Docker Container Support
Provides pre - built Docker images to simplify the deployment and configuration process.
Advantages
Specifically supports encrypted SQLite databases, filling a gap in the market
Supports encryption formats of multiple popular applications (such as MoneyMoney and 1Password)
Provides a secure password encryption storage solution
Easy to configure, supporting one - click installation
Runs completely locally without data transmission outside
Open - source and free, allowing for custom extensions
Limitations
Requires a Java 21 or higher runtime environment
Must know the encryption password of the database
Some advanced SQL functions may be restricted
Cannot use the macOS Keychain in a Docker container
Requires certain technical knowledge for the initial configuration

How to Use

Choose an Installation Method
Choose an installation method according to your needs: - For Cursor users: Install with one click through the Cursor Store - For Docker users: Use the pre - built Docker image - For advanced users: Build from source code
Configure the MCP Client
Add the server configuration to your MCP client configuration file. You need to provide the database path and password.
Encrypt the Password (Optional but Recommended)
For security reasons, it is recommended to use an encrypted password instead of a plain - text password. You can use the provided script to encrypt the password.
Restart the Client and Test
Restart the MCP client and then try to query the database. You can first use the list_tables tool to view all tables.

Usage Examples

Analyze Financial Data (MoneyMoney)
You can use this server to connect to the encrypted database of MoneyMoney and analyze your financial transaction records.
Manage Password Information (1Password)
Connect to the local encrypted database of 1Password to view and manage password entries.
View Chat Records (Signal)
Read the encrypted chat database of Signal and analyze the chat history.

Frequently Asked Questions

Do I need to know the database password?
Which application databases are supported?
Is the data secure? Will it be leaked?
What system requirements are needed?
How to get the database file path?
What if the installation from the Cursor Store fails?

Related Resources

GitHub Project Homepage
Source code, issue tracking, and the latest version
Cursor Store Page
One - click installation link and user reviews
Model Context Protocol Official Website
Official documentation and specifications of the MCP protocol
SQLCipher Official Website
Documentation on SQLCipher encryption technology
Docker Configuration Guide
Detailed Docker deployment and configuration instructions

Installation

Copy the following command to your Client for configuration
{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "/path/to/mcp-encrypted-sqlite/build/install/mcp-encrypted-sqlite/bin/mcp-encrypted-sqlite",
      "args": [
        "--args",
        "{\"db_path\":\"/path/to/your/database.sqlite\",\"passphrase\":\"your-passphrase\"}"
      ]
    }
  }
}

{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "/path/to/mcp-encrypted-sqlite/build/install/mcp-encrypted-sqlite/bin/mcp-encrypted-sqlite",
      "args": [
        "--args",
        "{\"db_path\":\"/path/to/your/database.sqlite\",\"passphrase\":\"your-passphrase\"}"
      ],
      "env": {
        "JAVA_HOME": "/path/to/java/home"
      }
    }
  }
}

{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-v", "/path/to/your/database.sqlite:/data/database.sqlite:ro",
        "ghcr.io/rosch100/mcp-encrypted-sqlite:latest",
        "--args",
        "{\"db_path\":\"/data/database.sqlite\",\"passphrase\":\"your-passphrase\"}"
      ]
    }
  }
}

{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-e", "MCP_SQLITE_ENCRYPTION_KEY=your-encryption-key",
        "-v", "/path/to/your/database.sqlite:/data/database.sqlite:ro",
        "ghcr.io/rosch100/mcp-encrypted-sqlite:latest",
        "--args",
        "{\"db_path\":\"/data/database.sqlite\",\"passphrase\":\"encrypted:your-encrypted-passphrase\"}"
      ]
    }
  }
}

{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "/path/to/mcp-encrypted-sqlite/build/install/mcp-encrypted-sqlite/bin/mcp-encrypted-sqlite",
      "args": [
        "--args",
        "{\"db_path\":\"/path/to/your/database.sqlite\",\"passphrase\":\"your-passphrase\",\"cipherProfile\":{\"name\":\"SQLCipher 4 defaults\",\"pageSize\":4096,\"kdfIterations\":256000,\"hmacAlgorithm\":\"HMAC_SHA512\",\"kdfAlgorithm\":\"PBKDF2_HMAC_SHA512\"}}"
      ]
    }
  }
}

{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "/path/to/mcp-encrypted-sqlite/build/install/mcp-encrypted-sqlite/bin/mcp-encrypted-sqlite",
      "args": [
        "--args",
        "{\"db_path\":\"/path/to/your/database.sqlite\",\"passphrase\":\"encrypted:<encrypted-passphrase>\"}"
      ]
    }
  }
}

{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "/path/to/mcp-encrypted-sqlite/build/install/mcp-encrypted-sqlite/bin/mcp-encrypted-sqlite",
      "args": [
        "--args",
        "{\"db_path\":\"/path/to/your/database.sqlite\",\"passphrase\":\"encrypted:<encrypted-passphrase>\"}"
      ],
      "env": {
        "MCP_SQLITE_ENCRYPTION_KEY": "<your-encryption-key>"
      }
    }
  }
}

{
  "mcpServers": {
    "encrypted-sqlite": {
      "command": "/path/to/mcp-encrypted-sqlite/build/install/mcp-encrypted-sqlite/bin/mcp-encrypted-sqlite",
      "args": [
        "--args",
        "{\"db_path\":\"/path/to/your/database.sqlite\",\"passphrase\":\"your-passphrase\"}"
      ],
      "env": {
        "MCP_DEBUG": "true"
      }
    }
  }
}
Note: Your key is sensitive information, do not share it with anyone.

Alternatives

R
Rsdoctor
Rsdoctor is a build analysis tool specifically designed for the Rspack ecosystem, fully compatible with webpack. It provides visual build analysis, multi - dimensional performance diagnosis, and intelligent optimization suggestions to help developers improve build efficiency and engineering quality.
TypeScript
7.8K
5 points
N
Next Devtools MCP
The Next.js development tools MCP server provides Next.js development tools and utilities for AI programming assistants such as Claude and Cursor, including runtime diagnostics, development automation, and document access functions.
TypeScript
8.4K
5 points
T
Testkube
Testkube is a test orchestration and execution framework for cloud-native applications, providing a unified platform to define, run, and analyze tests. It supports existing testing tools and Kubernetes infrastructure.
Go
6.2K
5 points
M
MCP Windbg
An MCP server that integrates AI models with WinDbg/CDB for analyzing Windows crash dump files and remote debugging, supporting natural language interaction to execute debugging commands.
Python
9.6K
5 points
R
Runno
Runno is a collection of JavaScript toolkits for securely running code in multiple programming languages in environments such as browsers and Node.js. It achieves sandboxed execution through WebAssembly and WASI, supports languages such as Python, Ruby, JavaScript, SQLite, C/C++, and provides integration methods such as web components and MCP servers.
TypeScript
7.5K
5 points
N
Netdata
Netdata is an open-source real-time infrastructure monitoring platform that provides second-level metric collection, visualization, machine learning-driven anomaly detection, and automated alerts. It can achieve full-stack monitoring without complex configuration.
Go
9.7K
5 points
M
MCP Server
The Mapbox MCP Server is a model context protocol server implemented in Node.js, providing AI applications with access to Mapbox geospatial APIs, including functions such as geocoding, point - of - interest search, route planning, isochrone analysis, and static map generation.
TypeScript
7.7K
4 points
U
Uniprof
Uniprof is a tool that simplifies CPU performance analysis. It supports multiple programming languages and runtimes, does not require code modification or additional dependencies, and can perform one-click performance profiling and hotspot analysis through Docker containers or the host mode.
TypeScript
8.3K
4.5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
21.7K
4.3 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
31.3K
5 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
63.3K
4.3 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
18.0K
4.5 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
27.0K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
58.8K
4.5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
19.9K
4.5 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
42.3K
4.8 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2026AIBase