这是一个通过分析苹果应用商店和谷歌Play商店的数据来提供全面市场情报的MCP服务器。获取关于应用、市场趋势、竞争对手以及用户反馈的洞察。
<a href="https://glama.ai/mcp/servers/@JiantaoFu/AppInsightMCP"> <img width="380" height="200" src="https://gips0.baidu.com/it/u=511227951,1449163849&fm=3081&app=3081&f=PNG?w=760&h=400" alt="应用市场情报 MCP 服务器" /> </a>| API 功能 | 实现 | MCP 工具名称 | 描述 |
|---|---|---|---|
| app | ✅ | app-store-details | 获取App Store应用的详细信息 |
| list | ✅ | app-store-list | 从iTunes收藏中检索应用 |
| search | ✅ | app-store-search | 在App Store上搜索应用 |
| developer | ✅ | app-store-developer | 按开发者获取应用 |
| privacy | ✅ | app-store-privacy | 获取应用的隐私详情 |
| suggest | ✅ | app-store-suggest | 获取搜索建议 |
| similar | ✅ | app-store-similar | 获取相似应用 |
| reviews | ✅ | app-store-reviews | 获取应用评论 |
| ratings | ✅ | app-store-ratings | 获取应用评分 |
| versionHistory | ✅ | app-store-version-history | 获取应用版本历史 |
| API 功能 | 实现 | MCP 工具名称 | 描述 |
|---|---|---|---|
| app | ✅ | google-play-details | 获取应用的详细信息 |
| list | ✅ | google-play-list | 从收藏中检索应用 |
| search | ✅ | google-play-search | 搜索应用 |
| developer | ✅ | google-play-developer | 按开发者获取应用 |
| suggest | ✅ | google-play-suggest | 获取搜索建议 |
| reviews | ✅ | google-play-reviews | 获取应用评论 |
| similar | ✅ | google-play-similar | 获取相似应用 |
| permissions | ✅ | google-play-permissions | 获取应用权限 |
| datasafety | ✅ | google-play-datasafety | 获取数据安全信息 |
| categories | ✅ | google-play-categories | 获取类别列表 |
启动MCP服务器:
node src/server.js
该服务器公开了可以通过任何MCP客户端使用的工具。例如,使用Claude for Desktop,你可以:
// 获取免费iOS应用排行榜
{
"name": "app-store-list",
"params": {
"collection": "topfreeapplications",
"num": 10
}
}
// 获取付费Android游戏排行榜
{
"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"
在你的claude_desktop_config.json中添加以下内容:
要通过Smithery自动安装App Market Intelligence for Claude Desktop:
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构建:
docker build -t app-insight-mcp -f Dockerfile .
所有工具都包含错误处理,并将在以下情况下返回适当的错误消息:
欢迎贡献:
MIT