AppDataLayer MCP Server by appdatalayer
35 score
An app intelligence query engine that enables analysis of over 1 billion reviews from Google Play and the Apple App Store. It provides tools for sentiment analysis, keyword rankings, competitive comparisons, and time-series forecasting across 250,000+ apps.
Ranked #944 out of 1625 indexed tools.Actively maintained with commits in the last week.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 0
Freshness today
Issue Health 50%
Stars 1
Platform Breadth 1 platform
Contributors 1
Description Detailed
How to Improve
Contributors medium impact
Stars low impact
Platforms medium impact
Supported Platforms
From the README
# appdatalayer-mcp
> Open-source TypeScript SDK for the [AppDataLayer](https://appdatalayer.com) MCP Server — the App Intelligence Query Engine powered by the [Model Context Protocol](https://modelcontextprotocol.io).
Analyze **1B+ app reviews** across Google Play and the Apple App Store. Semantic topic search, sentiment analysis, keyword rankings, competitive analysis, and time-series forecasting — all through a single typed API.
## Installation
```bash
npm install appdatalayer-mcp
```
## Quick Start
### As a TypeScript/JavaScript SDK
```typescript
import { AppDataLayerClient } from "appdatalayer-mcp";
const client = new AppDataLayerClient({ apiKey: "sk_live_..." });
// Get app metadata
const app = await client.getAppOverview("com.instagram.android");
console.log(app.data?.title, app.data?.score);
// Analyze review sentiment
const reviews = await client.analyzeReviews({
app_id: "com.spotify.music",
dimensions: ["sentiment", "topic"],
days: 30,
});
// Semantic topic se Read full README on GitHub →