Cursor

Connect ASO++ to Cursor using the built-in MCP configuration.

Cursorsupports MCP servers natively. You configure them in a JSON file and they're available to all AI features in the editor.

Prerequisites

Configuration

Open MCP settings

In Cursor, open the Command Palette (Cmd+Shift+P on macOS, Ctrl+Shift+P on Windows/Linux) and run Cursor: Open MCP Configuration.

This opens ~/.cursor/mcp.json (global) or .cursor/mcp.json inside your project (project-level).

Add the ASO++ server

Add the following entry to the mcpServers object:

{
  "mcpServers": {
    "asopp": {
      "url": "https://asopp.cc/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN_HERE"
      }
    }
  }
}

Replace YOUR_TOKEN_HERE with your actual token.

Reload Cursor

Press Cmd+R (macOS) or Ctrl+R (Windows/Linux), or reopen the window. Cursor re-reads the MCP configuration on startup.

Verify the connection

Open a new chat in Cursor Agent mode and type:

Search for keywords related to "photo editor" in the US App Store

Cursor should call search_keywords and return results.

Using environment variables

To avoid hardcoding your token, use Cursor's environment variable support:

{
  "mcpServers": {
    "asopp": {
      "url": "https://asopp.cc/mcp",
      "headers": {
        "Authorization": "Bearer ${ASO_TOKEN}"
      }
    }
  }
}

Then set ASO_TOKEN in your shell profile (~/.zshrc or ~/.bashrc) and restart Cursor.

Troubleshooting

© 2026 ASO++. All rights reserved.