Apple App Store Revenue Server
БесплатноНе проверенFetches revenue and download data for Apple App Store apps using the Sensor Tower API.
Описание
Fetches revenue and download data for Apple App Store apps using the Sensor Tower API.
README
An MCP (Model Context Protocol) server that fetches revenue and download data for Apple App Store apps using the Sensor Tower API.
Features
- 📊 Fetch last month's revenue and download estimates for iOS apps
- 💾 Persistent file-based cache with 30-day expiration
- ⚡ Batch requests for multiple app IDs
- 🛡️ Graceful handling of rate limits (429 errors)
- 📈 Returns app metadata including ratings, version, and bundle ID
Installation
- Clone the repository:
git clone https://github.com/yourusername/sensortower-mcp.git
cd sensortower-mcp
- Install dependencies:
npm install
- Build the TypeScript code:
npm run build
Usage
Running the Server
Start the MCP server:
npm start
For development with auto-rebuild:
npm run dev
Available Tools
fetch-app-revenue
Fetches revenue data for one or more Apple App Store apps.
Input:
app_ids: Array of iOS app IDs (strings)
Output: Returns a JSON object containing:
- Revenue and download data for each app
- Cache statistics
- Timestamp of the request
Example Request:
{
"app_ids": ["1514586439", "1570844427"]
}
Example Response:
{
"results": {
"1514586439": {
"source": "api",
"app_name": "SmoothSwing",
"publisher": "Thomas Turnbull",
"last_month_revenue": "$20k",
"last_month_downloads": "60k",
"bundle_id": "com.Smooth-Swing.Golf-GPS-Smooth-Swing",
"version": "3.1.0",
"rating": 4.85152,
"last_updated": "2023-05-08T00:00:00Z"
},
"1570844427": {
"source": "cache",
"app_name": "Ace Trace - Shot Tracker",
"publisher": "Ivkin LLC",
"last_month_revenue": "$20k",
"last_month_downloads": "10k",
"bundle_id": "org.acetrace",
"version": "8.10",
"rating": 4.41791,
"last_updated": "2025-07-08T00:00:00Z"
}
},
"cache_stats": {
"totalEntries": 2,
"validEntries": 2
},
"timestamp": "2025-07-09T12:00:00.000Z"
}
Integration with Claude Desktop
To use this MCP server with Claude Desktop, add the following to your Claude Desktop configuration:
{
"mcpServers": {
"appstore-revenue": {
"command": "node",
"args": ["/path/to/sensortower-mcp/dist/index.js"],
"description": "Fetch Apple App Store revenue data"
}
}
}
Cache Management
The server maintains a cache in the .cache directory to minimize API requests:
- Cache entries expire after 30 days
- Cache is automatically created on first run
- Invalid or expired entries are automatically removed
Error Handling
- Rate Limiting (429): The server will return an error message if rate limited by Sensor Tower
- Invalid App IDs: Returns an error for each app ID not found
- Network Errors: Gracefully handles connection issues
Project Structure
sensortower-mcp/
├── src/
│ ├── index.ts # Server entry point
│ ├── appstore-revenue.ts # Tool registration
│ ├── api-client.ts # Sensor Tower API client
│ ├── cache.ts # Cache implementation
│ └── types.ts # TypeScript interfaces
├── dist/ # Compiled JavaScript
├── .cache/ # Cache storage
├── package.json
├── tsconfig.json
└── README.md
Notes
- No API key is required for Sensor Tower API access
- The server fetches data for iOS apps only
- Revenue and download numbers are estimates provided by Sensor Tower
License
MIT
Установка Apple App Store Revenue Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/evekeen/appstore-revenue-mcpFAQ
Apple App Store Revenue Server MCP бесплатный?
Да, Apple App Store Revenue Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Apple App Store Revenue Server?
Нет, Apple App Store Revenue Server работает без API-ключей и переменных окружения.
Apple App Store Revenue Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Apple App Store Revenue Server в Claude Desktop, Claude Code или Cursor?
Открой Apple App Store Revenue Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Apple App Store Revenue Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
