A-Curated-List-of-Awesome-Claude-Skills Webex Automation
Automate Cisco Webex messaging, rooms, teams, webhooks, and people management through natural language commands
git clone https://github.com/Engineer1999/A-Curated-List-of-Awesome-Claude-Skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/Engineer1999/A-Curated-List-of-Awesome-Claude-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/app-automations/webex-automation" ~/.claude/skills/engineer1999-a-curated-list-of-awesome-claude-skills-webex-automation && rm -rf "$T"
app-automations/webex-automation/SKILL.mdWebex Automation
Automate Cisco Webex collaboration workflows -- send messages, manage rooms and teams, configure webhooks, and look up people -- all through natural language.
Toolkit docs: claude-skills.ai/toolkits/webex
Setup
- Add the Rube MCP server to your environment:
https://rube.app/mcp - Connect your Webex account when prompted (OAuth flow via Claude Skill)
- Start issuing natural language commands for Webex automation
Core Workflows
1. Send a Message to a Room or Person
Post plain text, markdown, file attachments, or Adaptive Cards to any Webex room or directly to a person.
Tool:
WEBEX_MESSAGING_CREATE_MESSAGE
Key parameters:
-- target room ID (useroomId
to find it)WEBEX_MESSAGING_LIST_ROOMS
-- send a private 1:1 message instead (mutually exclusive withtoPersonEmail
)roomId
-- plain text content (max 7439 bytes)text
-- markdown-formatted content (takes precedence overmarkdown
)text
-- list of public URLs for file attachments (one file per message)files
-- Adaptive Card JSON (one card per message)attachments
-- reply to a specific message as a threaded responseparentId
Example prompt:
"Send a markdown message to room Y2lz... saying Deploy completed with a link to the release notes"
2. List and Discover Rooms
Browse all rooms you belong to, filtered by type, team, or sorted by activity.
Tool:
WEBEX_MESSAGING_LIST_ROOMS
Key parameters:
-- filter bytype
(1:1) ordirectgroup
-- limit to rooms in a specific teamteamId
-- sort bysortBy
,id
, orlastactivitycreated
-- limit results (1-1000, default 100)max
Follow-up with
WEBEX_MESSAGING_GET_ROOM_DETAILS to get full metadata for a specific room including title, type, lock status, creator, and timestamps.
Example prompt:
"List my 10 most recently active group rooms in Webex"
3. Manage Webhooks for Event-Driven Automation
Create webhooks to receive real-time HTTP POST notifications when Webex resources change.
Tool:
WEBEX_WEBHOOKS_CREATE_WEBHOOK
Key parameters:
-- human-friendly webhook name (required)name
-- URL that receives POST notifications (required)targetUrl
-- what to monitor:resource
,messages
,rooms
,memberships
,meetings
,recordings
,meetingParticipants
, etc. (required)telephony_calls
-- trigger type:event
,created
,updated
,deleted
,started
,ended
,joined
(required)left
-- scope notifications (e.g.,filter
orroomId=<id>
)hostEmail=<email>
-- optional HMAC secret for payload signature verificationsecret
--ownedBy
for personal orcreator
for organization-wide webhooksorg
Supporting tools:
-- list all registered webhooks with optionalWEBEX_LIST_WEBHOOKS
andmax
filtersownedBy
-- inspect a specific webhook byWEBEX_WEBHOOKS_GET_WEBHOOKwebhookId
Example prompt:
"Create a webhook called 'New Messages' that POSTs to https://my-app.com/hook whenever a message is created in room Y2lz..."
4. Manage Team Memberships
Add people to Webex teams and optionally grant moderator privileges.
Tool:
WEBEX_MESSAGING_CREATE_TEAM_MEMBERSHIP
Key parameters:
-- the team to add the person to (required)teamId
-- email of the person to addpersonEmail
-- Webex person ID (alternative to email)personId
-- set toisModerator
for moderator access (defaulttrue
)false
Use
WEBEX_LIST_TEAMS to discover available teams first.
Example prompt:
"Add alice@example.com as a moderator to team Y2lz..."
5. Audit Room Memberships
Check who is in a room, verify a specific person's membership, or list memberships across teams.
Tool:
WEBEX_MESSAGING_LIST_MEMBERSHIPS
Key parameters:
-- list all members of a specific roomroomId
-- check if a person is a member (requirespersonEmail
)roomId
-- check by Webex person ID (requirespersonId
)roomId
-- filter by team associationteamId
-- limit resultsmax
Example prompt:
"List all members of room Y2lz... and tell me who the moderators are"
6. Search and Look Up People
Look up people in your Webex organization by email, display name, or ID.
Tool:
WEBEX_PEOPLE_LIST_PEOPLE
Use to resolve names to person IDs before sending direct messages or adding team members.
Example prompt:
"Find the Webex person ID for bob@company.com"
Known Pitfalls
| Pitfall | Details |
|---|---|
| Webhook auto-disable | Target URL must respond with HTTP 2xx; 100 failures in 5 minutes disables the webhook automatically |
| Message size limit | Both and have a 7439-byte maximum |
| One file per message | The array accepts a list but only one attachment is actually supported per message |
| One card per message | Only one Adaptive Card attachment is supported per message |
| Mutually exclusive targets | and / cannot be used together when sending messages |
| Room update requires title | always requires the parameter, even when only changing lock status or team |
| orgPublicSpaces conflicts | Cannot combine with , , or when listing rooms |
| Webhook read scope | Creating a webhook requires scope on the monitored resource type |
| Membership filter requires roomId | and filters in list memberships require unless you are a Compliance Officer |
Quick Reference
| Action | Tool Slug | Key Params |
|---|---|---|
| Send message | | , /, |
| List rooms | | , , |
| Get room details | | |
| Update room | | , |
| Delete message | | |
| Get message details | | |
| Create webhook | | , , , |
| List webhooks | | , |
| Get webhook | | |
| Add team member | | , , |
| List memberships | | , , |
| List people | | email, displayName, ID filters |
| List teams | | |
Part of the Claude Skills Hub