# Webex — MCP server on mcp.ai > Webex is a Cisco-powered video conferencing and collaboration platform offering online meetings, webinars, screen sharing, and team messaging By: mcp.ai · official Page: https://mcp.ai/webex ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_webex?ms=1781542320000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/webex/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/webex/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/webex/skill.md Postman collection (v2.1): https://mcp.ai/webex/postman.json ## Tools - webex_create_room(title: string, teamId?: string) — Tool to create a new room. use when you need to spin up a dedicated space for team collaboration or topic discussion. - webex_create_team(name: string, description?: string) — Tool to create a new team. use when you need to group rooms under a shared team. - webex_get_team_details(teamId: string) — Tool to retrieve details for a specific team by teamid. use when you need full metadata of a team before performing team-related operations. - webex_list_teams(max?: integer) — Tool to list teams. use when you need to retrieve the teams the authenticated user is a member of. - webex_list_webhooks(max?: integer, ownedBy?: string) — Tool to list webhooks. use after authentication to retrieve webhooks filtered by max or ownership. - webex_messaging_create_message(text?: string, files?: string[], roomId?: string, markdown?: string, toPersonId?: string, attachments?: object[], toPersonEmail?: string) — Tool to post a message to a webex room or person. use when you have a target roomid or private recipient and want to send text, markdown, files, or card attachments. - webex_messaging_create_room(title: string, teamId?: string) — Tool to create a new room. use to create a dedicated space for collaboration after authentication. - webex_messaging_create_team_membership(teamId: string, personId?: string, isModerator?: boolean, personEmail?: string) — Tool to add a person to a webex team by personid or personemail. use when granting a user access to a team; requires teamid and one of personid or personemail. - webex_messaging_delete_membership(membershipId: string) — Tool to delete a webex membership by its unique identifier. use when you need to remove a member from a space after confirming the membership exists. example: "delete the membership with id y2lzy29zcg - webex_messaging_delete_message(messageId: string) — Tool to delete a webex message by its unique identifier. use after confirming the messageid to remove unintended or obsolete messages. example: "delete the message with id y2lzy29zcgfyazovl21lc3nhz2uv - webex_messaging_delete_room(roomId: string) — Tool to delete a webex room by its id. use after confirming the roomid when you need to permanently remove or archive a space. example: "delete the room with id y2lzy29..." - webex_messaging_get_membership_details(membershipId: string) — Tool to retrieve details for a specific membership. use when you need metadata for a membership by its id. - webex_messaging_get_message_details(messageId: string) — Tool to retrieve details for a specific message. use when you need full content and metadata by message id. - webex_messaging_get_room_details(roomId: string) — Tool to retrieve details for a specific room. use when you need full metadata of a specific room before posting messages or updating settings. - webex_messaging_get_team_membership_details(membershipId: string) — Tool to retrieve details for a specific team membership. use when you need metadata for a team membership by its id. - webex_messaging_list_memberships(max?: integer, roomId?: string, teamId?: string, personId?: string, personEmail?: string) — Tool to list memberships in a webex room. use when you need to retrieve or filter membership details by roomid, personid, personemail, or teamid. supports limiting the response size. - webex_messaging_list_messages(max?: integer, before?: string, roomId: string, parentId?: string, beforeMessage?: string, mentionedPeople?: string[]) — Tool to list messages in a room. use when you need to retrieve chat history filtered by room, time window, or mentions. - webex_messaging_list_rooms(max?: integer, type?: string, sortBy?: string, teamId?: string) — Tool to list rooms the authenticated user belongs to. use after authentication when needing to retrieve spaces filtered by team, type, or sorted. example: "list my group rooms sorted by last activity. - webex_messaging_list_team_memberships(max?: integer, teamId?: string, personId?: string, personEmail?: string) — Tool to list team memberships. use when you need to retrieve or filter team membership details by teamid, personid, or personemail, with optional max limit. use after confirming the team or person con - webex_people_get_person(personId: string, callingData?: boolean) — Tool to get details for a specific person. use when you have a person's id and need full profile information. call after confirming the person's id. - webex_people_list_people(id?: string, max?: integer, email?: string, orgId?: string, roles?: string, locationId?: string, callingData?: boolean, displayName?: string) — Tool to list people in your organization. use when you need to retrieve people filtered by email, display name, ids, roles, or location. - webex_rooms_get_room_details(roomId: string) — Tool to retrieve details for a specific room. use when you need full metadata of a room before posting messages or updating settings. - webex_update_membership(isMonitor?: boolean, isModerator?: boolean, membershipId: string) — Tool to update a membership by membershipid. use when modifying a member's moderator or monitor status in a webex room. - webex_update_room(title?: string, roomId: string, teamId?: string, isLocked?: boolean) — Tool to update a room's title and settings. use when you need to rename, lock/unlock, or reassign a webex space. - webex_update_team(name: string, teamId: string) — Tool to update a team's name by teamid. use when you need to rename a webex team. example: "change team 12345 name to 'project x team'". - webex_webhooks_create_webhook(name: string, appId?: string, event: string, filter?: string, secret?: string, ownedBy?: string, resource: string, targetUrl: string) — Tool to create a new webhook for events. use when you need to register for webex event notifications. - webex_webhooks_delete_webhook(webhookId: string) — Tool to delete a specific webhook. use when you need to remove an existing webhook by its id after confirming the identifier. - webex_webhooks_get_webhook(webhookId: string) — Tool to get details for a specific webhook. use when you need to inspect a webhook's configuration before taking action. ## Links Docs: https://mcp.ai/docs/mcps/webex Website: https://mcp.ai/mcps/webex