KosmoKrator

communication

GoTo Webinar MCP Integration for OpenAI Agents SDK

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

7 functions 6 read 1 write Manual OAuth token auth

Connect GoTo Webinar 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.

GoTo Webinar MCP Config for OpenAI Agents SDK

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

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

Run the Gateway Manually

kosmokrator mcp:serve --integration=goto-webinar --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only GoTo Webinar 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.

GoTo Webinar Tools Visible to OpenAI Agents

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

MCP toolSource functionTypeDescription
integration__goto_webinar__gotowebinar_list_webinars goto-webinar.gotowebinar_list_webinars Read List webinars from GoTo Webinar. Returns upcoming, in-progress, and past webinars. Use the status parameter to filter by webinar state.
integration__goto_webinar__gotowebinar_get_webinar goto-webinar.gotowebinar_get_webinar Read Get detailed information about a specific webinar, including schedule, registration settings, and organizer details.
integration__goto_webinar__gotowebinar_create_webinar goto-webinar.gotowebinar_create_webinar Write Schedule a new webinar in GoTo Webinar. Provide a subject, one or more time slots (each with startTime and endTime in ISO 8601 format), and an optional description.
integration__goto_webinar__gotowebinar_list_sessions goto-webinar.gotowebinar_list_sessions Read List all sessions for a specific webinar. Each session represents one occurrence of a webinar (useful for recurring webinars).
integration__goto_webinar__gotowebinar_get_session goto-webinar.gotowebinar_get_session Read Get detailed information about a specific webinar session, including attendance, duration, and participant statistics.
integration__goto_webinar__gotowebinar_list_panelists goto-webinar.gotowebinar_list_panelists Read List all panelists for a specific webinar. Panelists are featured speakers who have enhanced permissions during the webinar.
integration__goto_webinar__gotowebinar_get_current_user goto-webinar.gotowebinar_get_current_user Read Get the profile of the currently authenticated GoTo Webinar user. Useful for verifying credentials and identifying the organizer account.

Related GoTo Webinar Pages