android-sqlite-inspector
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@android-sqlite-inspectorlist tables in my app's database"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Android SQLite Inspector
MCP server that inspects and queries SQLite databases on Android devices via ADB.
Prerequisites
Node.js 18+
ADB installed and in PATH
A debuggable Android app (debug builds)
Related MCP server: SQLite MCP Server
Installation
npm install
npm run buildConfiguration
Set via environment variables:
Variable | Description | Default |
| App package name |
|
| ADB device serial (for multiple devices) | (auto-detect) |
| Custom path to ADB binary |
|
Claude Code Setup
Add to ~/.claude/settings.json:
{
"mcpServers": {
"android-sqlite-inspector": {
"command": "node",
"args": ["/Users/andromeda/StudioProjects/android-sqlite-inspector/dist/index.js"],
"env": {
"ANDROID_PACKAGE": "com.hortusys"
}
}
}
}Available Tools
Tool | Description |
| List all |
| List all tables in a database |
| Show column schema for a table |
| Execute a SELECT query (returns JSON) |
| Execute INSERT/UPDATE/DELETE (pushes changes back to device) |
How It Works
Each read operation pulls a fresh copy of the database from the device via
adb shell run-as <package> cat databases/<db>Queries run locally using
better-sqlite3Write operations (
execute) pull the db, modify locally, then push back via ADB
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hortusys/android-sqlite-inspector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server