{
  "info": {
    "name": "21risk — mcp.ai",
    "description": "REST API for the 21risk 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/_21risk",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "_21risk_get_compliance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/compliance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "compliance"
          ]
        },
        "description": "Tool to retrieve compliance data for sites, categories, or questions. Use when you need OData-based compliance data for analytics or reporting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"count\": false,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"skiptoken\": \"\",\n  \"_maxPageSizeInMb\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_21risk_get_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "items"
          ]
        },
        "description": "Tool to retrieve items (BETA) from the 21RISK OData API. Use when you need a filtered and paged list of items for analytics and reporting. Example: GET_ITEMS($filter=\"Item Cost gt 100\", $top=50).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_21risk_get_items_per_month",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/items/per/month",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "items",
            "per",
            "month"
          ]
        },
        "description": "Tool to retrieve fact table data for ItemsPerMonth, one row per question per site per month. Use when querying monthly item data with OData parameters ($filter, $top, $skip, $select, maxPageSizeInMb).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"maxPageSizeInMb\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_21risk_get_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations"
          ]
        },
        "description": "Tool to retrieve organizations from the 21RISK OData API. Use when you need to list, filter, or paginate organizations via OData parameters after authentication is confirmed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"filter\": \"\",\n  \"orderby\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_21risk_get_properties",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/properties",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "properties"
          ]
        },
        "description": "Tool to fetch a list of properties related to sites, including COPE information and other relevant data. Use when you need property insurance details via OData API after authentication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_21risk_get_reports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/reports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "reports"
          ]
        },
        "description": "Tool to retrieve audit reports, including draft, published, and scheduled reports. Use when you need a paginated list of reports with optional OData filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"filter\": \"\",\n  \"skiptoken\": \"\",\n  \"maxPageSizeInMb\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_21risk_get_risk_models",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/risk/models",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "risk",
            "models"
          ]
        },
        "description": "Tool to retrieve risk models used for audits and compliance. Use when you need to list available risk models with optional OData queries.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"count\": false,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"skiptoken\": \"\",\n  \"maxPageSizeInMb\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "_21risk_get_riskmodel_categories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/riskmodel/categories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "riskmodel",
            "categories"
          ]
        },
        "description": "Tool to retrieve risk model categories for grouping questions and compliance checks. Use when you need to filter, select, or paginate risk model categories via OData parameters ($filter, $select, $ord",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"top\": 0,\n  \"skip\": 0,\n  \"count\": false,\n  \"expand\": \"\",\n  \"filter\": \"\",\n  \"select\": \"\",\n  \"orderby\": \"\",\n  \"skiptoken\": \"\",\n  \"maxPageSizeInMb\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}