{
  "info": {
    "name": "Sendbird AI Chatbot — mcp.ai",
    "description": "REST API for the Sendbird AI Chatbot 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/sendbird_ai_chabot",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "sendbird_ai_chabot_create_bot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/bot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "bot"
          ]
        },
        "description": "Tool to create a new bot. Use when you need to add an AI or default bot to your Sendbird app.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bot_type\": \"\",\n  \"bot_userid\": \"\",\n  \"bot_nickname\": \"\",\n  \"bot_profile_url\": \"\",\n  \"is_privacy_mode\": false,\n  \"bot_callback_url\": \"\",\n  \"enable_mark_as_read\": false,\n  \"channel_invitation_preference\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sendbird_ai_chabot_get_bot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bot"
          ]
        },
        "description": "Tool to retrieve information on a specific bot by its user ID. Use when you need to fetch bot details before performing subsequent operations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bot_user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sendbird_ai_chabot_list_bots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bots"
          ]
        },
        "description": "Tool to list all bots in the Sendbird application. Use when you need to fetch bot details with optional filters and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"token\": \"\",\n  \"bot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sendbird_ai_chabot_list_group_channels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/group/channels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "group",
            "channels"
          ]
        },
        "description": "Tool to list group channels. Use when you need to fetch available group channels with filters and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"limit\": 0,\n  \"token\": \"\",\n  \"query_type\": \"\",\n  \"show_empty\": false,\n  \"super_mode\": \"\",\n  \"custom_type\": \"\",\n  \"public_mode\": \"\",\n  \"channel_urls\": \"\",\n  \"custom_types\": \"\",\n  \"created_after\": 0,\n  \"distinct_mode\": \"\",\n  \"name_contains\": \"\",\n  \"created_before\": 0,\n  \"member_user_ids\": \"\",\n  \"members_nickname\": \"\",\n  \"members_exactly_in\": \"\",\n  \"members_include_in\": \"\",\n  \"members_nickname_prefix\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sendbird_ai_chabot_unregister_bot_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unregister/bot/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unregister",
            "bot",
            "webhook"
          ]
        },
        "description": "Tool to unregister the webhook URL for a bot. Use when you need to remove webhook configuration for a specific bot.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sendbird_ai_chabot_update_bot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/bot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "bot"
          ]
        },
        "description": "Tool to update information on an existing bot. Use when you need to change a bot's user ID, nickname, profile image URL, or toggle read-receipt or privacy settings after creation. Run after confirming",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bot_id\": \"\",\n  \"bot_userid\": \"\",\n  \"bot_nickname\": \"\",\n  \"bot_profile_url\": \"\",\n  \"is_privacy_mode\": false,\n  \"enable_mark_as_read\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}