communication
Cisco Webex MCP, CLI, and Lua Integration for AI Agents
Cisco Webex integration docs for AI agents: MCP gateway setup, Cisco Webex CLI commands, Lua API reference, credentials, and function schemas.
6 functions 5 read 1 write Manual OAuth token auth
Cisco Webex for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
webex- route_slug
webex- package
webex- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Cisco Webex CLIHeadless setup and direct function calls. Cisco Webex MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Cisco Webex MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Cisco Webex.
Claude Code Cisco Webex MCP setup for Claude Code. Cursor Cisco Webex MCP setup for Cursor. Codex Cisco Webex MCP setup for Codex. OpenAI Agents Cisco Webex MCP setup for OpenAI Agents SDK. Claude Agent SDK Cisco Webex MCP setup for Claude Agent SDK. Vercel AI SDK Cisco Webex MCP setup for Vercel AI SDK. LangChain Cisco Webex MCP setup for LangChain. LangGraph Cisco Webex MCP setup for LangGraph. CrewAI Cisco Webex MCP setup for CrewAI. MCP clients Cisco Webex MCP setup for Generic MCP Clients.
Cisco Webex CLI Matrix
Use these pages for direct Cisco Webex CLI workflows in scripts, CI, cron, and agent wrappers.
CI Cisco Webex CLI for CI. Cron Jobs Cisco Webex CLI for cron jobs. Shell Scripts Cisco Webex CLI for shell scripts. Headless Automation Cisco Webex CLI for headless automation. Coding Agents Cisco Webex CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
webex.webex_list_rooms | Read read | 3 | 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. |
webex.webex_get_room | Read read | 1 | Get details for a specific Webex room by its ID. Returns room title, type (direct or group), creator, creation date, and last activity. |
webex.webex_list_messages | Read read | 4 | List messages in a Webex room. Supports date-based filtering with before/after parameters and pagination. Returns message text, sender info, and timestamps. |
webex.webex_create_message | Write write | 3 | 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. |
webex.webex_list_meetings | Read read | 3 | 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. |
webex.webex_get_current_user | Read read | 0 | 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. |