An MCP (Model Context Protocol) server that exposes Aptoide app store data as tools. Works with any MCP-compatible AI client (Claude, Cursor, Windsurf, etc.) to look up Android app details and search the Aptoide catalog.
Get detailed information about an app by package name.
get_app(package_name="com.whatsapp")
Returns: name, version, developer, description, downloads, rating, size, malware rank, Aptoide URL, and more.
Search for apps by keyword.
search_apps(query="file manager", limit=5)
Returns: list of matching apps with name, package name, version, developer, downloads, rating, size, malware rank, and Aptoide URL.
pip install -r requirements.txt
python server.pyThe server starts on port 8000 by default. Set the PORT environment variable to change it.
docker build -t aptoide-mcp .
docker run -p 8000:8000 aptoide-mcpProduction:
claude mcp add aptoide --transport http https://mcp.aptoide.com/mcpLocal development:
claude mcp add aptoide --transport http http://localhost:8000/mcpOnce added to Claude Code, you can ask Claude things like:
- "Look up the WhatsApp app on Aptoide"
- "Search for VPN apps on Aptoide"
- "Get details about com.android.chrome from Aptoide"
- "Find file manager apps and compare their ratings"