Google PageRank for AI agents. 25,000+ tools indexed.

AppDataLayer MCP Server by appdatalayer

#944 of 1625 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

Single-contributor projects carry bus-factor risk — welcoming contributors boosts confidence

Stars low impact

Low star count — promote the project, write docs, and engage the community to drive adoption

Platforms medium impact

Only 1 platform listed — publishing to more platforms improves your score

Badge

AgentRank score for AppDataLayer MCP Server by appdatalayer
[![AgentRank](https://agentrank-ai.com/api/badge/skill/glama-appdatalayer--mcp)](https://agentrank-ai.com/skill/glama-appdatalayer--mcp/?utm_source=badge&utm_medium=readme&utm_campaign=agentrank_badge)
<a href="https://agentrank-ai.com/skill/glama-appdatalayer--mcp/?utm_source=badge&utm_medium=readme&utm_campaign=agentrank_badge"><img src="https://agentrank-ai.com/api/badge/skill/glama-appdatalayer--mcp" alt="AgentRank"></a>

Supported Platforms

MCP

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 →