Skip to content
LangChain

androidbuild mcp for LangChain

io.github.dev-jackson/androidbuild-mcp

Build, deploy, drive and debug Android apps: Gradle, emulators, adb, logcat, UI automation

client:LangChain transport:stdio runtime:npm

Install androidbuild mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "androidbuild-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@asjackson/androidbuild-mcp"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

androidbuild mcp in other clients