Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Unified MCP server for Android mobile development — combines project knowledge, Android CLI execution, live dependency versions, and agentic workflow tools for Claude Code.

README.md

android-dev-mcp

Unified MCP server for Android mobile development — combines project knowledge, Android CLI execution, live dependency versions, and agentic workflow tools for Claude Code.

Install

curl -fsSL https://raw.githubusercontent.com/maheshmishra271090-design/android-dev-mcp/main/scripts/install.sh | bash

That's it. No cloning, no manual steps. The installer handles everything:

  • Node.js ≥ 18 (installs or upgrades)
  • Git + ITGD aliases
  • Android CLI + Google Android Skills
  • android-dev-mcp global npm package
  • MCP config for Claude Code (via claude mcp add) and Claude Desktop (via claude_desktop_config.json)
  • CLAUDE.md block in current project
  • Git hooks (pre-commit lint + commit-msg Conventional Commits)

android-dev-mcp init registers the server in both places it can be used — the claude CLI's own MCP config (for Claude Code / the VSCode extension) and claude_desktop_config.json (for the Claude Desktop app). If the claude CLI isn't on PATH, Claude Code registration is skipped with a warning and the manual command to run instead (see below).

After install — verify

android-dev-mcp check
  MCP server built:    ✔
  Claude configured:   ✔
  Android CLI:         ✔  android 1.x.x
  CLAUDE.md (cwd):     ✔  block present
claude mcp get android-dev-mcp
android-dev-mcp:
  Status: ✔ Connected
  Type: stdio
  Command: node
  Args: <path-to-package>/dist/index.js

Then inside Claude Code, start a new session (registration only takes effect on session start): `` /mcp → should show android-dev-mcp with 24 tools ``

Manual registration (Claude Code)

If init reports it couldn't find the claude CLI, or you're setting this up without the installer, register it directly:

claude mcp add android-dev-mcp -- node "$(npm root -g)/@maheshmishra271090-design/android-dev-mcp/dist/index.js"

Or, when working from a local clone/checkout of this repo: ``bash npm run build claude mcp add android-dev-mcp -- node "$(pwd)/dist/index.js" ``

Remove it with: ``bash claude mcp remove android-dev-mcp -s local ``

---

What It Does

One MCP server that gives Claude Code both the knowledge and the execution power to complete full Android development workflows autonomously:

| Layer | Tools | What it provides | |---|---|---| | Knowledge | 14 | MVVM, Hilt, Compose, ExoPlayer, Retrofit, tests, git, prompts, model routing | | Android CLI | 5 | Scaffold, lint, render @Preview, deploy APK, live dep versions | | Execution | 4 | Direct adb, git, gradle, and shell command execution |

Tools (24 total)

Knowledge Layer (14)

| Tool | Returns | |---|---| | get_full_context | All 14 knowledge domains — call at session start | | get_project_structure | Module layout, package naming, file conventions | | get_architecture_patterns | MVVM, Hilt, ViewModel, StateFlow, Coroutines | | get_ui_compose_standards | Compose screens, Material 3, Navigation, Player UI | | get_api_backend_patterns | Retrofit, AuthInterceptor, DTO mapping, error codes | | get_player_patterns | ExoPlayer/Media3, HLS, Widevine DRM, lifecycle | | get_cicd_commands | Gradle flavors, signing, CI pipeline | | check_ui_fluidity | Frame rate · jank · recomposition · ACR crash analysis | | generate_tests | ViewModel · Repository · Compose UI · API templates | | get_git_workflow | Branch strategy, Conventional Commits, hooks | | get_prompt_templates | Ask CIO, few-shot CoT, compact tasks | | get_session_hygiene | /clear vs /compact, context window rules | | get_model_routing | Haiku/Sonnet/Opus routing + task recommendation | | get_tooling_setup | Graphify, RTK, Caveman, Superpowers guides |

Android CLI Integration Layer (5)

| Tool | What it does | |---|---| | get_android_cli_guide | Full CLI command reference + workflow protocols | | run_android_cli | Executes any android command, returns stdout | | get_live_versions | Current agp/kotlin/compose/media3 from Google Maven | | scaffold_feature | Context + live versions + CLI scaffold in one call | | verify_ui | Renders @Preview + validates against ITGD Compose standards | | fluidity_debug_workflow | Full debug protocol: ADB + layout tree + screenshot + ACR + lint |

*Requires Android Studio running with Gemini signed in.

Execution Layer (4)

| Tool | What it does | |---|---| | run_adb | Executes any adb command, returns stdout | | run_git | Executes any git command, returns stdout | | run_gradle | Executes a Gradle task — uses ./gradlew if present, else global gradle | | run_bash | Executes an arbitrary shell command, returns stdout/stderr |

Agentic Workflows

New Feature

get_full_context → get_live_versions → scaffold_feature → studio analyze-file → verify_ui → android run

Fluidity Debug

fluidity_debug_workflow("player") → android layout --diff → android screen capture → ACR → fix → verify

New Developer Onboarding

curl -fsSL https://raw.githubusercontent.com/maheshmishra271090-design/android-dev-mcp/main/scripts/install.sh | bash
# Done in ~3 minutes — no pair session needed

Per-Project CLAUDE.md

To add or update the MCP block in any project: ``bash android-dev-mcp setup-claude-md # current project android-dev-mcp setup-claude-md --dir=~/projects/App # specific project ``

Safe to re-run — never overwrites existing content.

Customising Knowledge

All knowledge is plain markdown in knowledge/. Edit to match your project.

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.