Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Fetches revenue and download data for Apple App Store apps using the Sensor Tower API.

README.md

Apple App Store Revenue MCP Server

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

  1. Clone the repository:
git clone https://github.com/yourusername/sensortower-mcp.git
cd sensortower-mcp
  1. Install dependencies:
npm install
  1. Build the TypeScript code:
npm run build

Usage

Running the Server

Start the MCP server: ``bash npm start ``

For development with auto-rebuild: ``bash 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: ``json { "app_ids": ["1514586439", "1570844427"] } ``

Example Response: ``json { "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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.