> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appeeky.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cursor

> Connect the Appeeky MCP server to Cursor and query live App Store & Google Play intelligence by chat.

Cursor connects to Appeeky over **Streamable HTTP** at `https://mcp.appeeky.com/mcp`, authenticated with your API key.

<Note>
  Get your API key from [appeeky.com → Settings → API Key](https://appeeky.com) or the [API Dashboard](https://dashboard.appeeky.com).
</Note>

## Connect Appeeky

<Steps>
  <Step title="One-click install">
    In **appeeky.com → Settings → API Key**, click **Add to Cursor**. Cursor opens, shows the server pre-filled with your key, and asks you to confirm — approve it, then reload.
  </Step>

  <Step title="Or add it by hand">
    Add Appeeky to `.cursor/mcp.json` in your project (or `~/.cursor/mcp.json` for all projects), then reload Cursor:

    ```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
    {
      "mcpServers": {
        "appeeky": {
          "url": "https://mcp.appeeky.com/mcp",
          "headers": {
            "Authorization": "Bearer apk_your_key_here"
          }
        }
      }
    }
    ```
  </Step>

  <Step title="Verify the tools">
    Open **Cursor Settings → MCP** and confirm `appeeky` is listed and its tools are enabled.
  </Step>
</Steps>

## Build with Appeeky

Describe what you want in chat and Cursor calls the right Appeeky tools:

```
Find keyword suggestions for "screen recorder" and tell me which ones
have high volume but low difficulty.
```

```
Give me the full intelligence report for Duolingo. How many downloads
does it get? What's the revenue estimate?
```

```
Which apps gained the most ranks in the top-free chart today?
Show me the top gainers and any new entries in Games.
```

See the full [tool reference](/docs/mcp#available-tools) for everything Appeeky exposes.

## Troubleshooting

* **Tools missing, greyed out, or "not connected"** — reload Cursor after editing `.cursor/mcp.json`, and confirm the server appears under **Cursor Settings → MCP**.
* **401 / "authentication required"** — your API key is missing or invalid. Regenerate it at [appeeky.com → Settings → API Key](https://appeeky.com) and update the `Authorization` header.
* **429 / "rate limit"** — you hit a plan or burst limit. See [Rate Limits](/docs/rate-limits).
