{
  "info": {
    "name": "BotMape — mcp.ai",
    "description": "REST API for the BotMape 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/botmape",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "botmape_add_knowledge",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/knowledge",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "knowledge"
          ]
        },
        "description": "Add and automatically embed training content in one AI agent's knowledge base, optionally with source or categorization metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"metadata\": {},\n  \"ai_agent_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botmape_create_ai_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/ai/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "ai",
            "agent"
          ]
        },
        "description": "Permanently create a BotMape AI agent. BotMape provides no documented delete-agent API, so this toolkit cannot remove it afterward, and creation may permanently consume a plan-limited agent slot. Requ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"primary_color\": \"\",\n  \"system_prompt\": \"\",\n  \"welcome_message\": \"\",\n  \"confirm_permanent_creation\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botmape_delete_knowledge_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/knowledge/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "knowledge",
            "entry"
          ]
        },
        "description": "Permanently delete one knowledge-base entry from an AI agent using both the agent ID and knowledge entry ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ai_agent_id\": 0,\n  \"knowledge_entry_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botmape_get_ai_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ai/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ai",
            "agent"
          ]
        },
        "description": "Return the detailed configuration, behavior prompt, appearance, and active state of one AI agent by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ai_agent_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botmape_get_platform_analytics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/platform/analytics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "platform",
            "analytics"
          ]
        },
        "description": "Return account-wide BotMape message and conversation totals, daily activity, averages, and per-agent statistics.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botmape_list_ai_agents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/ai/agents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "ai",
            "agents"
          ]
        },
        "description": "Return all AI agents owned by the connected BotMape account, including the IDs needed by single-agent, chat, and knowledge tools.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botmape_list_knowledge_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/knowledge/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "knowledge",
            "entries"
          ]
        },
        "description": "Return all knowledge-base entries currently attached to one AI agent, including entry IDs needed for deletion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ai_agent_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "botmape_send_message_to_ai_agent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/message/to/ai/agent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "message",
            "to",
            "ai",
            "agent"
          ]
        },
        "description": "Immediately send a visitor message to an AI agent, creating a conversation or continuing the supplied conversation, and return the generated reply. This permanently adds chat history.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"message\": \"\",\n  \"visitor_id\": \"\",\n  \"ai_agent_id\": 0,\n  \"visitor_name\": \"\",\n  \"visitor_email\": \"\",\n  \"conversation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}