{
  "info": {
    "name": "Sitespeakai — mcp.ai",
    "description": "REST API for the Sitespeakai 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/sitespeakai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "sitespeakai_get_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "leads"
          ]
        },
        "description": "Tool to retrieve all leads for your chatbot. Use when you need to access contact information captured through chatbot interactions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"chatbot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sitespeakai_get_prompts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/prompts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "prompts"
          ]
        },
        "description": "Tool to retrieve smart prompts available for a chatbot. Use when you need to list prompts before selecting or managing them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"chatbot_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sitespeakai_get_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user"
          ]
        },
        "description": "Tool to retrieve details of the authenticated user account. Use after obtaining a valid bearer token and when you need the current user's profile.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sitespeakai_list_chatbots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/chatbots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "chatbots"
          ]
        },
        "description": "Tool to list all chatbots. Use when you need an overview of every chatbot linked to your account. No parameters required.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}