Skip to main content
ClaudeWave

GetAppNiche MCP server — live App Store & Google Play data for AI agents: app discovery, ASO keyword research, reviews. Hosted Streamable HTTP endpoint + zero-dependency stdio bridge.

MCP ServersRegistry oficial0 estrellas0 forksPythonMITActualizado today
Install in Claude Code / Claude Desktop
Method: NPX · skills
Claude Code CLI
claude mcp add mcp -- npx -y skills
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": ["-y", "skills"],
      "env": {
        "GETAPPNICHE_API_KEY": "<getappniche_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
GETAPPNICHE_API_KEY
Casos de uso

Resumen de MCP Servers

# GetAppNiche MCP — App Store & Google Play intelligence for AI agents

The [Model Context Protocol](https://modelcontextprotocol.io) surface of
[GetAppNiche](https://getappniche.com): live App Store & Google Play data —
app discovery with revenue & download data, ASO keyword scoring, historical
metrics and review feeds — for Claude, Cursor, Codex, Gemini CLI and any other
MCP-capable agent.

**You probably don't need to run anything.** The server is hosted:

```
https://api.getappniche.com/mcp        Streamable HTTP · JSON-RPC 2.0
Authorization: Bearer YOUR_API_KEY     app.getappniche.com → Settings → API Keys
```

## Setup per client

**Claude Code** — one command, no restart:

```bash
claude mcp add --transport http getappniche https://api.getappniche.com/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"
```

**Cursor** — `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global):

```json
{
  "mcpServers": {
    "getappniche": {
      "url": "https://api.getappniche.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}
```

**Claude Desktop** — `claude_desktop_config.json`, then restart the app fully:

```json
{
  "mcpServers": {
    "getappniche": {
      "command": "npx",
      "args": ["-y", "@getappniche/mcp"],
      "env": { "GETAPPNICHE_API_KEY": "YOUR_API_KEY" }
    }
  }
}
```

**VS Code (Copilot agent mode)** — `.vscode/mcp.json`:

```json
{
  "servers": {
    "getappniche": {
      "type": "http",
      "url": "https://api.getappniche.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}
```

**Windsurf** — `~/.codeium/windsurf/mcp_config.json` (the field is `serverUrl`):

```json
{
  "mcpServers": {
    "getappniche": {
      "serverUrl": "https://api.getappniche.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}
```

**Codex CLI** — `~/.codex/config.toml`, then export `GETAPPNICHE_API_KEY`:

```toml
[mcp_servers.getappniche]
url = "https://api.getappniche.com/mcp"
bearer_token_env_var = "GETAPPNICHE_API_KEY"
```

**Gemini CLI** — `~/.gemini/settings.json` (the field is `httpUrl`):

```json
{
  "mcpServers": {
    "getappniche": {
      "httpUrl": "https://api.getappniche.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}
```

Zed, Cline, Continue and JetBrains AI are covered too —
[getappniche.com/mcp](https://getappniche.com/mcp) has every snippet.
Companion agent skills:
[`getappniche/aso-skills`](https://github.com/getappniche/aso-skills)
(`npx skills add getappniche/aso-skills`).

**ChatGPT** — Settings → Connectors → create a custom connector (Developer
mode), point it at `https://api.getappniche.com/mcp` and pick **API key**
authentication, then paste your key.

> claude.ai on the web documents request-header auth, but its connector UI
> currently exposes only OAuth fields — until that settles, use one of the
> clients above.

## What's in this repo

A **zero-dependency stdio bridge** for clients that speak MCP over stdio and
can't send HTTP headers — in two flavours: `bin/cli.mjs` (Node 18+, published as
[`@getappniche/mcp`](https://www.npmjs.com/package/@getappniche/mcp)) and
`server.py` (Python 3.9+, stdlib only). Both forward every JSON-RPC message to
the hosted endpoint over TLS and stream responses back.

```bash
# Node — one-liner, no install
GETAPPNICHE_API_KEY="getappniche_..." npx -y @getappniche/mcp

# Python — no dependencies
GETAPPNICHE_API_KEY="getappniche_..." python3 server.py
```

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "getappniche": {
      "command": "npx",
      "args": ["-y", "@getappniche/mcp"],
      "env": { "GETAPPNICHE_API_KEY": "getappniche_..." }
    }
  }
}
```

`server.json` is the manifest published to the
[official MCP registry](https://registry.modelcontextprotocol.io) as
`com.getappniche/mcp`.

Being ~150 readable lines, it doubles as a **reference for what travels over the
wire**: your API key goes only into the `Authorization` header of TLS requests
to `api.getappniche.com` — nothing else, nowhere else.

## Tools

- `search_apps` - Search and filter apps by store, category, text, ratings and growth (1 credit)
- `get_app_detail` - Get one app by id, e.g. `apple:284882215` or `google:com.duolingo` (1 credit)
- `get_app_historicals` - Metric time series: reviews, ratings, downloads, revenue (1 credit)
- `get_keyword_difficulty` - Popularity, difficulty, traffic and opportunity for a keyword (10 credits)
- `batch_keyword_difficulty` - Score up to 10 keywords, sorted by opportunity (10 credits per keyword)
- `get_app_reviews` - Enriched review feed for apps monitored in your workspace (1 credit)
- `get_supported_countries` - List valid store country codes (free)

Credits ship with a GetAppNiche plan (Pro: 5,000/month) and every result reports
`credits_charged`. Rate limit: 60 requests/minute per key.

## Protocol notes

- Methods: `initialize` → `notifications/initialized` → `tools/list` /
  `tools/call`. Protocol errors use standard JSON-RPC codes; tool-level errors
  (bad id, out of credits) come back as tool results your agent can read.
- The bridge honours `Mcp-Session-Id` and accepts both JSON and SSE-framed
  responses.
- OAuth for clients whose connector UI can't set headers (ChatGPT, claude.ai
  web) is in progress.

## License

MIT. Built by [GetAppNiche](https://getappniche.com) ·
X [@getappniche](https://x.com/getappniche) ·
[LinkedIn](https://www.linkedin.com/company/getappniche)
ai-agentsapp-storeasoclaudecursorgoogle-playmcpmcp-servermodel-context-protocol

Lo que la gente pregunta sobre mcp

¿Qué es getappniche/mcp?

+

getappniche/mcp es mcp servers para el ecosistema de Claude AI. GetAppNiche MCP server — live App Store & Google Play data for AI agents: app discovery, ASO keyword research, reviews. Hosted Streamable HTTP endpoint + zero-dependency stdio bridge. Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala mcp?

+

Puedes instalar mcp clonando el repositorio (https://github.com/getappniche/mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar getappniche/mcp?

+

getappniche/mcp aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene getappniche/mcp?

+

getappniche/mcp es mantenido por getappniche. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: getappniche/mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/getappniche-mcp)](https://claudewave.com/repo/getappniche-mcp)
<a href="https://claudewave.com/repo/getappniche-mcp"><img src="https://claudewave.com/api/badge/getappniche-mcp" alt="Featured on ClaudeWave: getappniche/mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mcp