KosmoKrator

communication

Cisco Webex MCP Integration for Claude Agent SDK

Connect Cisco Webex to Claude Agent SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

6 functions 5 read 1 write Manual OAuth token auth

Connect Cisco Webex to Claude Agent SDK

Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server.

Add a KosmoKrator stdio MCP server to the Claude Agent SDK options. The gateway is local, scoped to this integration, and starts with --write=deny so Claude Agent SDK can inspect read-capable tools without receiving write access by default.

Cisco Webex MCP Config for Claude Agent SDK

Use a narrow integration list so the agent does not load unrelated tools.

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

Expose only Cisco Webex 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.

Cisco Webex Tools Visible to Claude Agent SDK

Claude Agent SDK sees stable MCP tool names generated from the Cisco Webex integration catalog.

MCP toolSource functionTypeDescription
integration__webex__webex_list_rooms webex.webex_list_rooms Read List Webex spaces (rooms) the authenticated user belongs to. Returns room IDs, titles, types, and last activity timestamps. Use for discovering available rooms before reading messages or posting.
integration__webex__webex_get_room webex.webex_get_room Read Get details for a specific Webex room by its ID. Returns room title, type (direct or group), creator, creation date, and last activity.
integration__webex__webex_list_messages webex.webex_list_messages Read List messages in a Webex room. Supports date-based filtering with before/after parameters and pagination. Returns message text, sender info, and timestamps.
integration__webex__webex_create_message webex.webex_create_message Write Post a new message to a Webex room. Supports plain text and Markdown formatting. Provide either "text" (plain text) or "markdown" (formatted), or both — Webex will display Markdown to clients that support it and fall back to plain text.
integration__webex__webex_list_meetings webex.webex_list_meetings Read List scheduled Webex meetings for the authenticated user. Supports date range filtering with "from" and "to" parameters (ISO 8601). Returns meeting titles, start/end times, and join links.
integration__webex__webex_get_current_user webex.webex_get_current_user Read Get the profile of the currently authenticated Webex user. Returns display name, email, avatar, and account details. Useful for identifying which account the integration is connected to.

Related Cisco Webex Pages