{
  "info": {
    "name": "Wati — mcp.ai",
    "description": "REST API for the Wati 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/wati",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "wati_add_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contact"
          ]
        },
        "description": "Tool to add a new contact in WATI. Use when registering a customer's WhatsApp number before sending messages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"customParams\": \"\",\n  \"whatsappNumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wati_get_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "teams"
          ]
        },
        "description": "Tool to retrieve a list of teams from WATI. Use after authenticating when you need to enumerate all available teams.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wati_send_session_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/session/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "session",
            "message"
          ]
        },
        "description": "Tool to send a session message to a specified WhatsApp number. Use when you need to deliver a free-form text within an active 24-hour session window.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"messageText\": \"\",\n  \"whatsappNumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wati_update_chat_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/chat/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "chat",
            "status"
          ]
        },
        "description": "Update the status of a chat/conversation in WATI Team Inbox. This action allows you to change the status of a customer's chat to help manage ongoing conversations. Available statuses: - OPEN: Active, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ticket_status\": \"\",\n  \"whatsapp_number\": \"\",\n  \"channel_phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wati_update_contact_attributes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/attributes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "attributes"
          ]
        },
        "description": "Tool to update attributes of an existing contact. Use after confirming the contact exists and you need to modify its custom attributes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customParams\": \"\",\n  \"whatsappNumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}