KosmoKrator

communication

Wildix MCP Integration for OpenAI Agents SDK

Connect Wildix 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 Wildix 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.

Wildix MCP Config for OpenAI Agents SDK

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

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

Expose only Wildix 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.

Wildix Tools Visible to OpenAI Agents

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

MCP toolSource functionTypeDescription
integration__wildix__wildix_list_calls wildix.wildix_list_calls Read List call records from the Wildix PBX. Supports pagination and optional date range filtering to narrow results by period.
integration__wildix__wildix_get_call wildix.wildix_get_call Read Get detailed information about a specific call record by its ID.
integration__wildix__wildix_list_extensions wildix.wildix_list_extensions Read List PBX extensions configured in the Wildix system. Supports pagination.
integration__wildix__wildix_get_extension wildix.wildix_get_extension Read Get detailed information about a specific PBX extension by its ID.
integration__wildix__wildix_list_users wildix.wildix_list_users Read List users configured in the Wildix PBX system. Supports pagination.
integration__wildix__wildix_get_current_user wildix.wildix_get_current_user Read Get the profile of the currently authenticated Wildix user (the user associated with the configured access token).

Related Wildix Pages