An MCP server that provides comprehensive market intelligence by analyzing data from both the Apple App Store and Google Play Store, enabling users to research apps, track market trends, study competitors, and understand user feedback across mobile marketplaces.
An MCP server that provides comprehensive market intelligence by analyzing data from both the Apple App Store and Google Play Store. Get insights about apps, market trends, competitors, and user feedback across the major mobile app marketplaces.
API Function | Implemented | MCP Tool Name | Description |
---|---|---|---|
app | ✅ | app-store-details | Get detailed information about an App Store app |
list | ✅ | app-store-list | Retrieve apps from iTunes collections |
search | ✅ | app-store-search | Search for apps on the App Store |
developer | ✅ | app-store-developer | Get apps by a developer |
privacy | ✅ | app-store-privacy | Get privacy details for an app |
suggest | ✅ | app-store-suggest | Get search suggestions |
similar | ✅ | app-store-similar | Get similar apps |
reviews | ✅ | app-store-reviews | Get app reviews |
ratings | ✅ | app-store-ratings | Get app ratings |
versionHistory | ✅ | app-store-version-history | Get app version history |
API Function | Implemented | MCP Tool Name | Description |
---|---|---|---|
app | ✅ | google-play-details | Get detailed app information |
list | ✅ | google-play-list | Retrieve apps from collections |
search | ✅ | google-play-search | Search for apps |
developer | ✅ | google-play-developer | Get apps by developer |
suggest | ✅ | google-play-suggest | Get search suggestions |
reviews | ✅ | google-play-reviews | Get app reviews |
similar | ✅ | google-play-similar | Get similar apps |
permissions | ✅ | google-play-permissions | Get app permissions |
datasafety | ✅ | google-play-datasafety | Get data safety information |
categories | ✅ | google-play-categories | Get list of categories |
Start the MCP server:
node src/server.js
The server exposes tools that can be used through any MCP client. For example, using Claude for Desktop, you can:
// Get top free iOS apps { "name": "app-store-list", "params": { "collection": "topfreeapplications", "num": 10 } } // Get top paid Android games { "name": "google-play-list", "params": { "collection": "TOP_PAID", "category": "GAME", "num": 10 } }
npm run test:inspector
npx @wong2/mcp-cli npx -y "app-insight-mcp"
Add this to your claude_desktop_config.json
:
To install App Market Intelligence for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @JiantaoFu/appinsightmcp --client claude
{ "mcpServers": { "app-insight-mcp": { "command": "docker", "args": [ "run", "-i", "--rm", "app-insight-mcp" ] } } }
{ "mcpServers": { "app-insight-mcp": { "command": "npx", "args": [ "-y", "@jeromyfu/app-insight-mcp" ] } } }
Docker build:
docker build -t app-insight-mcp -f Dockerfile .
All tools include error handling and will return appropriate error messages if:
Feel free to contribute by:
MIT
Discover shared experiences
Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!