android-sqlite-mcp
Enables AI agents to directly access and query Android app databases (SQLite/Room) via ADB, supporting schema inspection and live SQL CRUD operations.
README
Android SQLite MCP Server
A Model Context Protocol (MCP) server to connect AI agents directly to the embedded SQLite/Room databases of your Android applications.
What problem does this solve?
Accessing embedded databases (SQLite, Room, SQLDelight) on Android devices during development has historically been a cumbersome process. It requires running adb shell run-as commands, manually copying files, dealing with .db-wal (Write-Ahead Logging) files to prevent data loss, and then using external SQL clients to read the information.
This MCP server automates the entire process. It allows any AI agent (like Claude, Cursor, or Antigravity) to inspect tables, read schemas, and execute live SQL queries (SELECT, INSERT, UPDATE, DELETE) on your application's database, right from the chat window.
Features
- 📥 Secure Extraction: Uses
adb exec-out run-asto safely extract data without corruption and without requiring root access. - 🗄️ Smart Caching: Stores local copies organized in
~/.android-sqlite-mcp/cache/. - 🔍 Search and Inspection: Tools to search installed packages, list databases, view tables, and retrieve full DDL schemas.
- ⚡ Queries (CRUD): Executes raw SQL queries locally and returns the results in JSON format to the AI.
Technical Prerequisites
- Node.js: Version 18 or higher.
- Android Debug Bridge (ADB): Must be installed and configured in your system's
PATH(verify withadb version). - Device/Emulator: A device or emulator must be connected (
adb devices). - Debuggable App: The Android app must be compiled in debug mode (
android:debuggable="true").
Getting Started (Standard Configuration)
There is no need to manually download or build this repository. You can run the server on the fly using npx.
The standard format to register an MCP server in any client is the following:
{
"mcpServers": {
"android-sqlite": {
"command": "npx",
"args": ["-y", "android-sqlite-mcp"]
}
}
}
AI Client Installation Guides
<details> <summary><b>1. Antigravity</b></summary> <br> Add the server by editing the <code>mcp_settings.json</code> file in your global directory (e.g., <code>~/.gemini/antigravity/mcp_settings.json</code>):
{
"mcpServers": {
"android-sqlite": {
"command": "npx",
"args": ["-y", "android-sqlite-mcp"]
}
}
}
</details>
<details> <summary><b>2. Claude Code (CLI)</b></summary> <br> If you are using Anthropic's official terminal tool, you can register the server directly with this command:
claude mcp add android-sqlite npx -y android-sqlite-mcp
</details>
<details> <summary><b>3. Cursor IDE</b></summary> <br> In Cursor, MCPs are configured via the graphical interface:
- Go to Cursor Settings > Features > MCP.
- Click on "+ Add New MCP Server".
- Fill in the details:
- Type:
command - Name:
android-sqlite - Command:
npx -y android-sqlite-mcp
- Type:
- Save and verify that the indicator changes to "Connected" (green). </details>
<details> <summary><b>4. Claude Desktop</b></summary> <br> Edit your configuration file (located at <code>~/.config/Claude/claude_desktop_config.json</code> on macOS/Linux or <code>%APPDATA%\Claude\claude_desktop_config.json</code> on Windows) and add the JSON block from the <i>Getting Started</i> section. Remember to restart the application after saving the changes. </details>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.