KosmoKrator

hr

Recruitee MCP Integration for OpenAI Agents SDK

Connect Recruitee to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

6 functions 6 read 0 write Bearer token auth

Connect Recruitee to OpenAI Agents SDK

Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.

Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with --write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.

Recruitee MCP Config for OpenAI Agents SDK

Use headless JSON commands for CI-style execution and MCP for agent tool discovery.

{
  "mcpServers": {
    "kosmokrator-recruitee": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=recruitee",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=recruitee --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Recruitee instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Recruitee Tools Visible to OpenAI Agents

OpenAI Agents sees stable MCP tool names generated from the Recruitee integration catalog.

MCP toolSource functionTypeDescription
integration__recruitee__recruitee_list_offers recruitee.recruitee_list_offers Read List job offers (open positions) from Recruitee. Returns paginated results with offer titles, statuses, and metadata. Filter by status to see only open, closed, or draft positions.
integration__recruitee__recruitee_get_offer recruitee.recruitee_get_offer Read Get details for a specific job offer in Recruitee. Returns the full offer object including title, description, requirements, location, and status.
integration__recruitee__recruitee_list_candidates recruitee.recruitee_list_candidates Read List candidates from Recruitee. Returns paginated results with candidate names, emails, and application status.
integration__recruitee__recruitee_get_candidate recruitee.recruitee_get_candidate Read Get details for a specific candidate in Recruitee. Returns the full candidate profile including contact info, resume, and application history.
integration__recruitee__recruitee_list_departments recruitee.recruitee_list_departments Read List all departments in Recruitee. Returns department names and IDs that can be used to filter offers.
integration__recruitee__recruitee_get_current_user recruitee.recruitee_get_current_user Read Get the currently authenticated Recruitee user. Returns user profile info including name, email, and role.

Related Recruitee Pages