KosmoKrator

communication

Cisco Webex MCP Integration for Vercel AI SDK

Connect Cisco Webex to Vercel AI 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 Vercel AI SDK

Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.

Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with --write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.

Cisco Webex MCP Config for Vercel AI SDK

Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.

{
  "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 Vercel AI SDK

Vercel AI 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