{
  "info": {
    "name": "Mocean — mcp.ai",
    "description": "REST API for the Mocean 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/mocean",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "mocean_query_message_status_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/message/status/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "message",
            "status",
            "v2"
          ]
        },
        "description": "Tool to query delivery status of an SMS message. Use after sending an SMS when you need to check its delivery success by msgid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mocean-msgid\": \"\",\n  \"mocean-api-key\": \"\",\n  \"mocean-api-secret\": \"\",\n  \"mocean-resp-format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mocean_voice_dial_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/voice/dial/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "voice",
            "dial",
            "v2"
          ]
        },
        "description": "Tool to initiate an outbound voice call via Mocean API. Use when you need to place a call with a defined command flow.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mocean-to\": \"\",\n  \"mocean-from\": \"\",\n  \"mocean-command\": \"\",\n  \"mocean-event-url\": \"\",\n  \"mocean-resp-format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mocean_voice_download_recording_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/voice/download/recording/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "voice",
            "download",
            "recording",
            "v2"
          ]
        },
        "description": "Tool to download a call recording. Use when you need to retrieve the recording audio for a completed call by its UUID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mocean-call-uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mocean_voice_hangup_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/voice/hangup/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "voice",
            "hangup",
            "v2"
          ]
        },
        "description": "Tool to hang up an active voice call. Use when you need to terminate an ongoing call by its call UUID immediately.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mocean-api-key\": \"\",\n  \"mocean-call-uuid\": \"\",\n  \"mocean-api-secret\": \"\",\n  \"mocean-resp-format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mocean_whats_app_send_message_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/whats/app/send/message/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "whats",
            "app",
            "send",
            "message",
            "v2"
          ]
        },
        "description": "Tool to send a WhatsApp message via Mocean API. Use when you need to send text, media, template, reaction, or interactive messages on WhatsApp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mocean-to\": \"\",\n  \"mocean-from\": \"\",\n  \"mocean-content\": {},\n  \"mocean-event-url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mocean_whatsapp_incoming_webhook_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/whatsapp/incoming/webhook/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "whatsapp",
            "incoming",
            "webhook",
            "v2"
          ]
        },
        "description": "Tool to receive and return the full incoming WhatsApp webhook payload. Use when you must capture raw webhook JSON (message_id, event_type, event_data) for downstream parsing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_data\": {},\n  \"event_type\": \"\",\n  \"message_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}