{
  "info": {
    "name": "Boloforms — mcp.ai",
    "description": "REST API for the Boloforms 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/boloforms",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "boloforms_get_documents_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/documents/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "documents",
            "list"
          ]
        },
        "description": "Retrieves a list of documents from a BoloForms workspace. Returns document metadata including IDs, names, signing types, status, and timestamps. Optionally filter by workspace ID. Use this to enumerat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}