communication
Cisco Webex MCP Integration for LangChain
Connect Cisco Webex to LangChain through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Cisco Webex to LangChain
Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls.
Use the MCP gateway when the agent should discover tools, or wrap kosmo integrations:call for fixed chains. The gateway is local, scoped to this integration, and starts with
--write=deny so LangChain can inspect read-capable tools without receiving write access by default.
Cisco Webex MCP Config for LangChain
Keep the gateway scoped to the integration and operation class needed by the chain.
{
"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
Expose only Cisco Webex instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Cisco Webex Tools Visible to LangChain
LangChain sees stable MCP tool names generated from the Cisco Webex integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
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. |