KosmoKrator

communication

Cisco Webex MCP Integration for Claude Code

Connect Cisco Webex to Claude Code 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 Code

Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry.

Add KosmoKrator as a stdio MCP server in the Claude Code project config and select the integrations that should be visible. The gateway is local, scoped to this integration, and starts with --write=deny so Claude Code can inspect read-capable tools without receiving write access by default.

Cisco Webex MCP Config for Claude Code

Claude Code can launch the local kosmo binary directly from the project MCP config.

{
  "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 Code

Claude Code 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