webex_mcp_server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@webex_mcp_serverShow my Webex spaces"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Webex Teams MCP Server
A Model Context Protocol (MCP) server that enables Claude Desktop to interact with Cisco Webex Teams. Send messages, manage spaces, and automate team collaboration directly from Claude.
β¨ Features
π 11 Powerful Tools for complete Webex Teams integration
π¬ Messaging: Send, retrieve, and delete messages with Markdown support
π₯ Space Management: Create, search, and manage team spaces
π€ People Management: Add members, list participants, and get user details
π Secure: Uses official Webex Teams API with bot tokens
β‘ Async: Built with async/await for optimal performance
Related MCP server: Webex Messaging MCP Server
π Prerequisites
Python 3.10+ installed
Webex Teams Account (free at https://www.webex.com/)
Webex Bot Token or Personal Access Token
Claude Desktop installed
π Quick Start
1. Get a Webex Bot Token
Option A: Create a Bot (Recommended for production)
Fill in bot details and create the bot
Copy the Bot Access Token immediately (you won't see it again!)
Add the bot to your Webex spaces
Option B: Personal Access Token (For testing only)
Your token is displayed after logging in
β οΈ Warning: Personal tokens expire after 12 hours
2. Install
# Clone the repository
git clone https://github.com/YOUR_USERNAME/webex-mcp-server.git
cd webex-mcp-server
# Create and activate virtual environment (recommended)
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt3. Configure Claude Desktop
Edit your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add this configuration:
{
"mcpServers": {
"webex": {
"command": "/FULL/PATH/TO/venv/bin/python",
"args": [
"/FULL/PATH/TO/webex-mcp-server/src/webex_mcp_server.py"
],
"env": {
"WEBEX_ACCESS_TOKEN": "YOUR_WEBEX_BOT_TOKEN_HERE"
}
}
}
}Important Notes:
Replace
/FULL/PATH/TO/with your actual absolute pathReplace
YOUR_WEBEX_BOT_TOKEN_HEREwith your actual tokenOn macOS, use
/venv/bin/pythonOn Windows, use
\venv\Scripts\python.exe
4. Restart Claude Desktop
Completely quit and restart Claude Desktop to load the MCP server.
5. Test It!
In Claude Desktop, try:
Can you list my Webex spaces?You should see your Webex spaces listed! π
π οΈ Available Tools
Messaging
send_message - Send text or Markdown messages to spaces
get_messages - Retrieve conversation history
delete_message - Remove messages (with permissions)
Space Management
list_spaces - List all accessible spaces
get_space_details - Get detailed space information
create_space - Create new team spaces
search_spaces - Find spaces by name
People Management
add_person_to_space - Add members to spaces
list_space_members - List all space participants
get_person_details - Get user information
get_my_details - Get bot/user account info
π‘ Usage Examples
Send a Message
Send a message to my "Project Alpha" space saying "Meeting starts in 5 minutes!"Create a Space
Create a new Webex space called "Q1 Planning" and add john@company.com as a member.Get Space Messages
Show me the last 10 messages from my "Engineering Team" space.Search for Spaces
Find all my Webex spaces that contain "customer" in the name.π§ Advanced Configuration
Multiple MCP Servers
If you have other MCP servers (like Splunk), combine them:
{
"mcpServers": {
"webex": {
"command": "/path/to/venv/bin/python",
"args": ["/path/to/webex_mcp_server.py"],
"env": {
"WEBEX_ACCESS_TOKEN": "YOUR_TOKEN"
}
},
"splunk": {
"command": "node",
"args": ["splunk-server.js"]
}
}
}Environment Variables
Instead of putting the token in the config, use environment variables:
{
"mcpServers": {
"webex": {
"command": "/path/to/venv/bin/python",
"args": ["/path/to/webex_mcp_server.py"],
"env": {
"WEBEX_ACCESS_TOKEN": "${WEBEX_TOKEN}"
}
}
}
}Then set WEBEX_TOKEN in your system environment.
π Troubleshooting
"Server not found" in Claude Desktop
Check that paths in
claude_desktop_config.jsonare absolute (not relative)Verify the Python virtual environment path is correct
Restart Claude Desktop completely (quit, don't just close window)
"Authentication failed" errors
Verify your
WEBEX_ACCESS_TOKENis correctCheck that the token hasn't expired (personal tokens expire in 12 hours)
Ensure the bot has been added to spaces you're trying to access
"Permission denied" errors
Bot tokens need to be added to spaces before they can interact
Some operations require moderator permissions
Check bot has necessary scopes in the Webex Developer portal
Connection test
Create a test script:
import os
from webexteamssdk import WebexTeamsAPI
token = os.getenv("WEBEX_ACCESS_TOKEN")
api = WebexTeamsAPI(access_token=token)
# Test connection
me = api.people.me()
print(f"β
Connected as: {me.displayName}")
# List spaces
rooms = list(api.rooms.list(max=5))
print(f"β
Found {len(rooms)} spaces")ποΈ Development
Project Structure
webex-mcp-server/
|ββ webex_mcp_server.py # Main MCP server
βββ requirements.txt # Python dependencies
βββ README.md # This file
βββ LICENSE # MIT LicenseRunning in Development
# Activate virtual environment
source venv/bin/activate
# Set token
export WEBEX_ACCESS_TOKEN="your_token_here"
# Run server directly
python src/webex_mcp_server.pyAdding New Tools
Define the tool in
list_tools()Create a handler function
handle_your_tool(args)Add the handler to
call_tool()
π€ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Fork the repository
Create your feature branch (
git checkout -b feature/AmazingFeature)Commit your changes (
git commit -m 'Add some AmazingFeature')Push to the branch (
git push origin feature/AmazingFeature)Open a Pull Request
π License
This project is licensed under the MIT License - see the LICENSE file for details.
π Resources
π Acknowledgments
Built for integration with Claude Desktop
Uses the official Webex Teams SDK
Implements the Model Context Protocol
π§ Support
Issues: GitHub Issues
Webex Support: Webex Developer Support
MCP Protocol: MCP Documentation
Made with β€οΈ for the Cisco community
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA Model Context Protocol implementation with a modular architecture that exposes capabilities through specialized agents, enabling seamless integration with Claude Desktop and web applications.2
- Alicense-qualityDmaintenanceEnables AI assistants to interact with Cisco Webex messaging through 52 comprehensive tools covering messages, rooms, teams, people management, webhooks, and enterprise features. Supports both personal and enterprise Webex environments with complete API coverage for messaging operations.4MIT
- Alicense-qualityCmaintenanceEnables Claude to interact with DingTalk workspaces to search for users, retrieve detailed employee information, and send private messages. It bridges the Model Context Protocol with DingTalk's internal enterprise APIs for seamless workspace communication.85MIT
- AlicenseAqualityCmaintenanceEnables Claude to interact with WhatsApp on macOS through the Model Context Protocol. It allows reading messages, searching contacts, listing chats, and sending replies via natural conversation.82MIT
Related MCP Connectors
Drive your real WhatsApp inbox from Claude β send, reply, label, assign, and triage via TimelinesAI.
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tekgourou/webex_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server