Cisco Webex video conferencing platform.
## Webex MCP Server: Enterprise Video Collaboration The **Webex MCP Server** integrates Cisco Webex into Google Antigravity. This enables creating meetings, managing spaces, and automating enterprise video collaboration workflows programmatically. ### Why Webex MCP? Webex powers enterprise communication: - **Enterprise Grade**: Security and compliance - **Video Quality**: HD video conferencing - **Spaces**: Persistent team collaboration - **Integrations**: Deep enterprise integration - **Global**: Reliable worldwide infrastructure ### Key Features #### 1. Create Meetings ```python import requests headers = {"Authorization": f"Bearer {access_token}"} meeting = requests.post( "https://webexapis.com/v1/meetings", headers=headers, json={ "title": "Sprint Planning", "start": "2024-03-15T10:00:00Z", "end": "2024-03-15T11:00:00Z", "enabledAutoRecordMeeting": True } ) print(f"Join Link: {meeting.json()['webLink']}") ``` #### 2. Messaging ```python # Send message to space message = requests.post( "https://webexapis.com/v1/messages", headers=headers, json={ "roomId": "space-id", "markdown": "**Build Complete** :white_check_mark:\\n\\nAll tests passed!" } ) # Create space space = requests.post( "https://webexapis.com/v1/rooms", headers=headers, json={"title": "Project Alpha"} ) ``` #### 3. Bot Development ```python from webexteamssdk import WebexTeamsAPI api = WebexTeamsAPI(access_token="bot-token") # Listen and respond @flask_app.route("/webhook", methods=["POST"]) def webhook(): data = request.json message = api.messages.get(data["data"]["id"]) if "status" in message.text.lower(): api.messages.create( roomId=message.roomId, markdown="All systems operational :white_check_mark:" ) return "OK" ``` ### Configuration ```json { "mcpServers": { "webex": { "command": "npx", "args": ["-y", "@anthropic/mcp-webex"], "env": { "WEBEX_ACCESS_TOKEN": "your-token" } } } } ``` ### Use Cases **Meeting Automation**: Schedule and manage meetings. **Team Notifications**: Post updates to team spaces. **Enterprise Bots**: Build compliant enterprise bots. The Webex MCP Server brings enterprise collaboration to Antigravity.
{
"mcpServers": {
"webex": {}
}
}