Webex MCP integration for AI agents.
Connect AI agents to Webex through 40 structured actions, including download meeting transcript, create meeting, and delete meeting. Review authentication, i…
- ACTION CONTRACTS
- 40
- AUTHENTICATION
- OAuth 2.0
- SOURCE STATUS
- Provider-backed
CATALOG SOURCE REVIEWED AUGUST 23, 2026 / ACTION NAMES AND SCHEMAS DERIVED FROM WORKING MACHINES PROVIDER SOURCE
CAPABILITY PROFILE
What the Webex integration exposes
The Webex Agent App exposes 40 provider-backed actions for communication and productivity work. Its current contract lets an authorized agent download a webex meeting transcript as vtt or plain text, schedule a webex meeting, and delete a scheduled webex meeting. These operations are called through Working Machines as typed capabilities rather than through browser navigation or copied UI steps.
A connection uses OAuth 2.0. Before execution, the agent can inspect the selected action, its required fields, declared scopes, and expected output contract. Provider credentials remain inside the Working Machines runtime; the calling agent receives the capability and its structured result, not the underlying secret.
For reliable operation, start with the narrowest action that satisfies the task, resolve stable provider identifiers before changing state, and validate the returned object or status after execution. Availability still depends on the connected Webex account, granted provider permissions, workspace policy, region, plan, and upstream API behavior.
VERIFIED ACTION SAMPLE
Real Webex capabilities.
Showing 12 of 40 actions. Risk labels are conservative signals based on operation names, not substitutes for provider documentation or runtime policy.
download_meeting_transcriptREADDownload a Webex meeting transcript as VTT or plain text.
INPUTS: transcriptId / format
create_meetingWRITESchedule a Webex meeting.
INPUTS: title / agenda / password / start / end
delete_meetingHIGH IMPACTDelete a scheduled Webex meeting.
INPUTS: meetingId / sendEmail
create_membershipWRITECreate a Webex membership.
INPUTS: roomId / personId / personEmail / isModerator
create_messageWRITESend a message to a Webex room or person.
INPUTS: roomId / parentId / toPersonId / toPersonEmail / text
create_roomWRITECreate a Webex room.
INPUTS: title / teamId / classificationId / isLocked / isPublic
create_teamWRITECreate a Webex team.
INPUTS: name / description
create_team_membershipWRITECreate a Webex team membership.
INPUTS: teamId / personId / personEmail / isModerator
delete_membershipHIGH IMPACTDelete a Webex membership.
INPUTS: membershipId
delete_messageHIGH IMPACTDelete a Webex message.
INPUTS: messageId
delete_roomHIGH IMPACTDelete a Webex room.
INPUTS: roomId
delete_teamHIGH IMPACTDelete a Webex team.
INPUTS: teamId
INPUT CONTRACTS
Know what the action needs before it runs.
download_meeting_transcript
transcriptIdREQUIRED- The Webex meeting transcript ID.
formatOPTIONAL- The transcript download format.
create_meeting
titleREQUIRED- The meeting title.
agendaOPTIONAL- The meeting agenda.
passwordOPTIONAL- The meeting password.
startREQUIRED- The meeting start time in ISO 8601 format.
endREQUIRED- The meeting end time in ISO 8601 format.
delete_meeting
meetingIdREQUIRED- The Webex meeting ID.
sendEmailOPTIONAL- Whether Webex should send cancellation email.
create_membership
roomIdREQUIRED- The Webex room ID.
personIdOPTIONAL- The Webex person ID to add.
personEmailOPTIONAL- The email address to add.
isModeratorOPTIONAL- Whether the person should be a room moderator.
PROVIDER-SPECIFIC WORKFLOWS
Jobs this Agent App can support
Inspect Download Meeting Transcript
Download a Webex meeting transcript as VTT or plain text. Use this as a bounded discovery step, retain the returned identifier, and avoid expanding the read beyond the task's stated scope.
download_meeting_transcriptControl Create Meeting
Schedule a Webex meeting. Resolve the target first, present material changes for confirmation, and make retries idempotent where the provider supports it.
create_meetingVerify with Create Meeting
Schedule a Webex meeting. Compare the returned provider state with the intended outcome and preserve stable IDs or canonical links in the run record.
create_meetingSAFETY BOUNDARY
Operate Webex with explicit limits
- Authorize Webex with OAuth 2.0 and grant only the provider access required by the selected actions.
- 18 actions are change-capable by name. Confirm the target identity and material parameters before allowing a write.
- Treat `delete_meeting`, `delete_membership`, and `delete_message` as high-impact operations and require an explicit approval boundary.
- The sampled contract declares provider scopes including `meeting:schedules_write`, `spark:memberships_write`, `spark:messages_write`, and `spark:rooms_write`; verify the complete action contract before execution.
- After a call, inspect the structured result and execution record before reporting that the Webex task completed successfully.
CONNECTION MODEL
OAuth 2.0
Webex uses OAuth 2.0. Connection requirements and availability are determined by the provider and the Working Machines deployment.
Working Machines stores provider credentials behind the execution boundary. An agent can use an authorized connection identity, but catalog discovery alone does not reveal OAuth tokens, API keys, or provider secrets.
- READ SIGNALS
- 22
- WRITE SIGNALS
- 12
- HIGH IMPACT
- 6
- REVIEW SIGNALS
- 0
EVIDENCE AND AVAILABILITY
Provider reference
Action names, input fields, authentication types, and counts on this page are generated from the Working Machines provider catalog. Provider behavior, quotas, object semantics, account eligibility, and regional availability remain governed by Webex.