{
  "info": {
    "name": "Bland AI — mcp.ai",
    "description": "REST API for the Bland AI 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/bland_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bland_ai_create_pathway_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/pathway/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "pathway",
            "folder"
          ]
        },
        "description": "Create an empty pathway folder, optionally nested under an existing folder, without running calls or agents.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"parent_folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_delete_pathway_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pathway/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pathway",
            "folder"
          ]
        },
        "description": "Delete an empty pathway folder by ID; folders containing pathways or subfolders must be emptied first.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_get_account_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "details"
          ]
        },
        "description": "Return the connected Bland AI account's status, call count, balance, and refill settings without changing the account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_list_calls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/calls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "calls"
          ]
        },
        "description": "Search the connected account's existing inbound and outbound call history without placing or modifying calls.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"inbound\": false,\n  \"sort_by\": \"\",\n  \"batch_id\": \"\",\n  \"end_date\": \"\",\n  \"timezone\": \"\",\n  \"ascending\": false,\n  \"completed\": false,\n  \"to_number\": \"\",\n  \"created_at\": \"\",\n  \"start_date\": \"\",\n  \"answered_by\": \"\",\n  \"campaign_id\": \"\",\n  \"duration_gt\": 0,\n  \"duration_lt\": 0,\n  \"from_number\": \"\",\n  \"update_end_date\": \"\",\n  \"update_start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_list_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contacts"
          ]
        },
        "description": "Return organization contacts and their identifiers and memory records one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_list_knowledge_bases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/knowledge/bases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "knowledge",
            "bases"
          ]
        },
        "description": "Return one page of the connected Bland AI organization's knowledge bases, including processing status, source details, and file metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_list_pathway_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pathway/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pathway",
            "folders"
          ]
        },
        "description": "Return all pathway folders and their parent relationships from Bland's US regional pathway service.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_list_pathways",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pathways",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pathways"
          ]
        },
        "description": "Return all conversational pathways, including their names, descriptions, nodes, and edges.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_list_tools",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tools",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tools"
          ]
        },
        "description": "Search and page through the active or draft tools configured for Bland agents.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"search\": \"\",\n  \"order_by\": \"\",\n  \"order_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bland_ai_rename_pathway_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rename/pathway/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rename",
            "pathway",
            "folder"
          ]
        },
        "description": "Rename an existing pathway folder without moving or changing any pathways inside it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}