Store Scraper MCP

Store Scraper MCP

Enables querying and retrieving data from App Store and Google Play Store, including app details, reviews, ratings, rankings, permissions, and search capabilities across both iOS and Android platforms.

Category
访问服务器

README

Store Scraper MCP

A Model Context Protocol (MCP) server for accessing App Store and Google Play Store data. Provides 20 tools to query application information, reviews, ratings, rankings, and more from both iOS and Android app stores.

Features

  • 20 MCP Tools - Complete access to App Store and Google Play data
  • Dual Store Support - iOS (App Store) and Android (Google Play)
  • No External Dependencies - Self-contained scraping implementation
  • Robust Error Handling - Automatic retry and timeout management
  • Normalized Data - Consistent structured JSON responses
  • Cursor IDE Integration - Ready to use with Cursor

Installation

npm install

Configuration

Cursor IDE

Add the following to your Cursor MCP settings file:

Windows:

%APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json

macOS/Linux:

~/.cursor/mcp.json

Configuration:

{
  "mcpServers": {
    "store-scraper": {
      "command": "node",
      "args": ["/absolute/path/to/store-scraper-mcp/src/server.js"],
      "cwd": "/absolute/path/to/store-scraper-mcp"
    }
  }
}

See examples/cursor-mcp.json for a complete example.

Replace /absolute/path/to/store-scraper-mcp with your actual project path.

Restart Cursor completely after configuration.

Available Tools

App Store (iOS) - 10 tools

  1. app - Get detailed app information
  2. search - Search for apps
  3. list - Get app rankings (top free/paid/grossing)
  4. reviews - Get app reviews with pagination
  5. ratings - Get app ratings distribution
  6. developer - Get all apps by a developer
  7. similar - Get similar apps
  8. privacy - Get privacy labels and data usage
  9. versionHistory - Get app version history
  10. suggest - Get search suggestions/autocomplete

Google Play (Android) - 10 tools

  1. gp_app - Get detailed app information
  2. gp_search - Search for apps
  3. gp_list - Get app rankings
  4. gp_reviews - Get app reviews with pagination
  5. gp_developer - Get all apps by a developer
  6. gp_similar - Get similar apps
  7. gp_permissions - Get app permissions
  8. gp_datasafety - Get data safety information
  9. gp_categories - Get list of available categories
  10. gp_suggest - Get search suggestions/autocomplete

Usage Examples

In Cursor

Once configured, you can use prompts like:

App Store:

Search for fitness apps in the App Store
Get details of Duolingo using bundleId com.duolingo.DuolingoMobile
Show me the top 20 free apps in the United States

Google Play:

Search for fitness apps on Google Play
Get details of Duolingo on Google Play (appId: com.duolingo)
Show me all permissions of WhatsApp on Google Play (appId: com.whatsapp)
Get data safety information for TikTok (appId: com.zhiliaoapp.musically)

API Reference

App Store Tools

app

Get detailed information about an app.

Parameters:

  • id (number, optional): iTunes trackId
  • appId (string, optional): Bundle ID
  • country (string, optional): Two-letter country code (default: "us")

search

Search for apps in the App Store.

Parameters:

  • term (string, required): Search term
  • country (string, optional): Two-letter country code (default: "us")
  • lang (string, optional): Language code (default: "en")
  • num (number, optional): Number of results (default: 50, max: 200)
  • page (number, optional): Page number (default: 1)

list

Get app rankings.

Parameters:

  • chart (string, optional): Chart type - "topfreeapplications", "toppaidapplications", or "topgrossingapplications" (default: "topfreeapplications")
  • country (string, optional): Two-letter country code (default: "us")
  • genre (string, optional): Genre ID or "all" (default: "all")
  • limit (number, optional): Number of results (default: 200)

Google Play Tools

gp_app

Get detailed information about an app.

Parameters:

  • appId (string, required): Google Play app ID (e.g., "com.duolingo")
  • lang (string, optional): Language code (default: "en")
  • country (string, optional): Two-letter country code (default: "us")

gp_search

Search for apps on Google Play.

Parameters:

  • term (string, required): Search term
  • country (string, optional): Two-letter country code (default: "us")
  • lang (string, optional): Language code (default: "en")
  • num (number, optional): Number of results (default: 250)

gp_permissions

Get app permissions.

Parameters:

  • appId (string, required): Google Play app ID
  • lang (string, optional): Language code (default: "en")
  • country (string, optional): Two-letter country code (default: "us")
  • short (boolean, optional): If true, return only permission names (default: false)

Requirements

  • Node.js >= 18.0.0
  • npm or yarn

Limitations

App Store

  • Similar apps parsing is limited (HTML parsing required)
  • Ratings histogram details not available from public API (only average and count)
  • Privacy data only available for US App Store apps

Google Play

  • HTML scraping required, may be fragile to structure changes
  • Some data may not be available depending on app structure
  • Rate limiting may apply with excessive requests

Error Handling

The server handles errors robustly:

  • Automatic retry: 3 attempts with exponential backoff
  • Timeouts: 30 seconds default
  • HTTP errors: Proper status code handling
  • Parsing: Validation and graceful handling of missing data

If functionality is unavailable or fails, returns:

  • null for individual objects
  • [] for arrays
  • Descriptive error messages

Project Structure

store-scraper-mcp/
├── src/
│   ├── server.js                    # MCP server entry point
│   ├── httpClient.js                # HTTP client with retry logic
│   ├── endpoints/
│   │   ├── appStore.js              # App Store URL builders
│   │   └── googlePlay.js            # Google Play URL builders
│   └── parsers/
│       ├── appStore/                # App Store parsers
│       │   ├── app.js
│       │   ├── list.js
│       │   ├── reviews.js
│       │   ├── search.js
│       │   ├── ratings.js
│       │   ├── privacy.js
│       │   ├── similar.js
│       │   ├── versionHistory.js
│       │   └── suggest.js
│       └── googlePlay/              # Google Play parsers
│           ├── app.js
│           ├── categories.js
│           ├── datasafety.js
│           ├── list.js
│           ├── permissions.js
│           ├── reviews.js
│           ├── search.js
│           ├── similar.js
│           └── suggest.js
├── examples/
│   └── cursor-mcp.json              # Example Cursor configuration
├── .editorconfig                    # Editor configuration
├── .gitattributes                   # Git attributes
├── .gitignore                       # Git ignore rules
├── CHANGELOG.md                     # Changelog
├── LICENSE                          # MIT License
├── package.json                     # Project configuration
└── README.md                        # This file

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Disclaimer

This project is for educational and research purposes. Please respect the terms of service of App Store and Google Play when using this tool.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选