by shenghaiwang
Android Project MCP Server: build Android projects and run Android tests directly in VS Code via MCP-compatible extensio
Builds Android projects and runs tests directly from Visual Studio Code through AI coding assistants like Cline or Roo Code.
Android Project MCP Server is a community-built MCP server published by shenghaiwang that provides AI assistants with tools and capabilities via the Model Context Protocol. Android Project MCP Server: build Android projects and run Android tests directly in VS Code via MCP-compatible extensio It is categorized under developer tools. This server exposes 3 tools that AI clients can invoke during conversations and coding sessions.
You can install Android Project MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Android Project MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We evaluated Android Project MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend Android Project MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, Android Project MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Android Project MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Android Project MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
Android Project MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Android Project MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated Android Project MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
Android Project MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
According to our notes, Android Project MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 51
A Model Context Protocol server that builds Android project that enables seamless workflow working with Android projects in Visual Studio Code using extensions like Cline or Roo Code.
<a href="https://glama.ai/mcp/servers/@ShenghaiWang/androidbuild"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@ShenghaiWang/androidbuild/badge" alt="Android Project Server MCP server" /> </a>build - Build Android project
folder (string, required): The full path of the current folder that the Android project sitstest - Run unit test
folder (string, required): The full path of the current folder that the Android project sitsinstrumentedTest - Run Instrumented test
folder (string, required): The full path of the current folder that the Android project sitsWhen using uv no specific installation is needed. We will
use uvx to directly run mcpandroidbuild.
Alternatively you can install mcpandroidbuild via pip:
pip install mcpandroidbuild
After installation, you can run it as a script using:
python -m mcpandroidbuild
Add to your Claude settings:
<details> <summary>Using uvx</summary>"mcpServers": {
"mcpandroidbuild": {
"command": "uvx",
"args": ["mcpandroidbuild"]
}
}
</details>
<details>
<summary>Using pip installation</summary>
"mcpServers": {
"mcpandroidbuild": {
"command": "python",
"args": ["-m", "mcpandroidbuild"]
}
}
</details>
mcpandroidbuild MCP tool is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.