{
  "info": {
    "name": "CheckFlow — mcp.ai",
    "description": "REST API for the CheckFlow 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/checkflow",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "checkflow_create_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tag"
          ]
        },
        "description": "Create a team tag by name, or return the existing same-name tag without creating a duplicate.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_find_checklists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/checklists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "checklists"
          ]
        },
        "description": "Find checklist summaries for a template, optionally filtered by name, tag, or lifecycle status. Returns one page and a cursor for the next page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"page_size\": 0,\n  \"template_key\": \"\",\n  \"checklist_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_get_analytics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/analytics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "analytics"
          ]
        },
        "description": "Return checklist and task activity analytics for a date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"period_end_date\": \"\",\n  \"period_start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_get_task_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "details"
          ]
        },
        "description": "Get one checklist task with its controls, comments, and assignees.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_key\": \"\",\n  \"checklist_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_get_team_directory",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/team/directory",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "team",
            "directory"
          ]
        },
        "description": "Return active team members and groups, including each group's membership, optionally filtered by name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name_contains\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_list_checklist_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/checklist/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "checklist",
            "details"
          ]
        },
        "description": "Return one page of full checklist instances, including tasks and controls, with a cursor for the next page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"page_size\": 0,\n  \"template_key\": \"\",\n  \"checklist_key\": \"\",\n  \"checklist_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "List the tags available to the connected CheckFlow team.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_list_template_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/template/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "template",
            "tasks"
          ]
        },
        "description": "List the task keys and names defined by one checklist template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "List active checklist templates and their keys for creating or finding checklists.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "checkflow_list_webhook_subscriptions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhook/subscriptions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhook",
            "subscriptions"
          ]
        },
        "description": "List webhook subscriptions, optionally filtered by source and event type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source\": \"\",\n  \"event_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}