KosmoKrator

communication

Cisco Webex MCP Integration for Cursor

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

Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server.

Create or update .cursor/mcp.json with a KosmoKrator stdio server entry. The gateway is local, scoped to this integration, and starts with --write=deny so Cursor can inspect read-capable tools without receiving write access by default.

Cisco Webex MCP Config for Cursor

Use the same KosmoKrator install and integration credentials that power terminal and headless runs.

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

Cursor 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