{
  "info": {
    "name": "Adrapid — mcp.ai",
    "description": "REST API for the Adrapid MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/adrapid",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "adrapid_get_api_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/api/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "api",
            "info"
          ]
        },
        "description": "Retrieves AdRapid API version information from the root endpoint. Use this tool to: - Check the current API version being used - Verify API connectivity and authentication - Ensure compatibility with ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adrapid_get_system_me",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/system/me",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "system",
            "me"
          ]
        },
        "description": "Tool to get user account and API information. Use when you need to retrieve authenticated user details and API versions.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "adrapid_list_banners",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/banners",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "banners"
          ]
        },
        "description": "Tool to list all banners and their statuses. Use when you need to retrieve banners after creation or to audit existing banners. Ensure you apply filters to narrow down results (e.g., status='ready').",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"search\": \"\",\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}