GuidesAI Client Setup
AI Client SetupBeginner 2 min

Connect Cursor to MCP360

Configure Cursor IDE to use MCP360 for ad management from your code editor.

Prerequisites

  • Cursor IDE installed
  • MCP360 API key from [dashboard/api-keys](/dashboard/api-keys)
  • Step 1: Create .cursor/mcp.json

    In your project root (or home directory for global config), create .cursor/mcp.json:

    json
    {
      "mcpServers": {
        "mcp360-ads": {
          "url": "https://meta-ads.mcp.mcp360.net/",
          "headers": {
            "Authorization": "Bearer mcp_live_YOUR_KEY_HERE"
          }
        }
      }
    }

    Step 2: Enable MCP in Cursor Settings

  • Open Cursor Settings (`Cmd+,` on Mac)
  • Search for "MCP"
  • Enable **MCP Servers**
  • Cursor will automatically load your `.cursor/mcp.json`
  • Step 3: Test

    Open a new chat in Cursor and type:

    "Using MCP360, show me my Google Ads campaigns sorted by spend"

    For Global Config

    For a home directory config that applies to all projects:

  • **macOS/Linux:** `~/.cursor/mcp.json`
  • **Windows:** `%USERPROFILE%\.cursor\mcp.json`
  • Related Guides