{
  "info": {
    "name": "BotPenguin — mcp.ai",
    "description": "REST API for the BotPenguin 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/botpenguin",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "botpenguin_get_template_dynamic_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/template/dynamic/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "template",
            "dynamic",
            "fields"
          ]
        },
        "description": "Return the dynamic key-value fields required by a BotPenguin WhatsApp template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botpenguin_import_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/import/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "import",
            "contacts"
          ]
        },
        "description": "Import contacts in bulk into BotPenguin. Existing contacts may be updated, and the operation does not return contact IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contacts\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botpenguin_list_inbox_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/inbox/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "inbox",
            "contacts"
          ]
        },
        "description": "Return one page of BotPenguin inbox contacts filtered by whether the contact has interacted with a bot.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"user_interacted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botpenguin_list_segments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/segments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "segments"
          ]
        },
        "description": "List the contact segments configured in the connected BotPenguin account, including each segment's filter definition and contact count.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botpenguin_list_whatsapp_bots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/whatsapp/bots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "whatsapp",
            "bots"
          ]
        },
        "description": "List WhatsApp bots available to the connected BotPenguin account for use with plugin template tools.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botpenguin_list_whatsapp_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/whatsapp/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "whatsapp",
            "templates"
          ]
        },
        "description": "List WhatsApp templates available to a BotPenguin bot.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}