{
  "info": {
    "name": "The Org — mcp.ai",
    "description": "REST API for the The Org 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/the_org",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "the_org_estimate_position_search_cost",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/estimate/position/search/cost",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "estimate",
            "position",
            "search",
            "cost"
          ]
        },
        "description": "Estimate the credits required for one page of a position search without consuming credits. Use the same limit, offset, and filters with Search Positions if the estimate is acceptable.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "the_org_get_current_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "usage"
          ]
        },
        "description": "Return the connected account's current credit allowance, billing interval, reset date, additional credits, overages, and unlimited status.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "the_org_get_manager",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/manager",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "manager"
          ]
        },
        "description": "WARNING: Each successful lookup costs 1 credit. Find a person's org-chart manager by work email or LinkedIn profile URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"linked_in_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "the_org_get_org_chart",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/org/chart",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "org",
            "chart"
          ]
        },
        "description": "Return a company's current v1.2 org chart or board as a flat node list. A successful request costs 10 credits, although repeats for the same company within 24 hours are not charged again.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\",\n  \"section\": \"\",\n  \"linked_in_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "the_org_get_usage_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage",
            "history"
          ]
        },
        "description": "Return daily or monthly historical usage for one API product over an inclusive date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to_date\": \"\",\n  \"interval\": \"\",\n  \"from_date\": \"\",\n  \"api_product\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "the_org_list_people_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/people/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "people",
            "lists"
          ]
        },
        "description": "Return people and lead lists owned by or shared with the connected account, one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "the_org_search_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "companies"
          ]
        },
        "description": "Find companies by name, domain, or email without consuming credits. Provide at least one search identifier; prefer one when possible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"limit\": 0,\n  \"query\": \"\",\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "the_org_search_positions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/positions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "positions"
          ]
        },
        "description": "Search people and positions using company, role, hierarchy, location, funding, and contact filters. This request consumes 1 credit per returned row; call Estimate Position Search Cost first when cost ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}