{
  "info": {
    "name": "HackerRank Work — mcp.ai",
    "description": "REST API for the HackerRank Work 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/hackerrank_work",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "hackerrank_work_companies_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/companies/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "companies",
            "list"
          ]
        },
        "description": "Tool to list all companies and their unique identifiers. Use when you need the company_unique_id for SSO metadata retrieval.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path_hint\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hackerrank_work_sso_assertion_consumer_service",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sso/assertion/consumer/service",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sso",
            "assertion",
            "consumer",
            "service"
          ]
        },
        "description": "Tool to consume SAML assertions. Use when receiving SAMLResponse and RelayState from the Identity Provider for SSO sign-in.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"relay_state\": \"\",\n  \"saml_response\": \"\",\n  \"company_unique_id\": \"\",\n  \"raise_on_http_error\": false,\n  \"raw_saml_response_xml\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hackerrank_work_sso_sign_on_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sso/sign/on/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sso",
            "sign",
            "on",
            "url"
          ]
        },
        "description": "Tool to get the SP-initiated SSO sign-on URL. Use when configuring SAML SSO with your identity provider.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}