{
  "info": {
    "name": "Coresignal — mcp.ai",
    "description": "REST API for the Coresignal 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/coresignal",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "coresignal_get_real_time_employee_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/real/time/employee/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "real",
            "time",
            "employee",
            "profile"
          ]
        },
        "description": "Retrieve an employee profile, using cached data up to max_age hours old (24 by default); set max_age=0 to request current data. Requires the connected account's separate Real-time Employee API entitle",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"max_age\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coresignal_search_fast",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/fast",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "fast"
          ]
        },
        "description": "Turn a natural-language employee, company, or job search into an Elasticsearch query, or return matching preview records. Prefer this lower-cost search unless deeper reasoning or clarification is need",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"entity\": \"\",\n  \"prompt\": \"\",\n  \"threshold\": 0,\n  \"return_data\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coresignal_search_with_reasoning",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/with/reasoning",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "with",
            "reasoning"
          ]
        },
        "description": "Run a higher-cost natural-language search that explains its interpretation and can request clarification. Use when fast search is ambiguous or reasoning is valuable; a query-mode call consumed 100 tri",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"prompt\": \"\",\n  \"threshold\": 0,\n  \"session_id\": \"\",\n  \"return_data\": false,\n  \"allow_clarification\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}