Skip to content
LangChain

MCP Appium - Mobile Development and Automation Server for LangChain

io.github.appium/appium-mcp

MCP server for Appium mobile automation on iOS and Android devices with test creation tools.

client:LangChain transport:stdio runtime:npm

Install MCP Appium - Mobile Development and Automation Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

MCP Appium - Mobile Development and Automation Server in other clients