Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables Claude Desktop to send messages, manage spaces, and automate team collaboration in Cisco Webex Teams via the Model Context Protocol.

README.md

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.

!License !Python

✨ 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

📋 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)

  1. Go to https://developer.webex.com/my-apps/new/bot
  2. Fill in bot details and create the bot
  3. Copy the Bot Access Token immediately (you won't see it again!)
  4. Add the bot to your Webex spaces

Option B: Personal Access Token (For testing only)

  1. Go to https://developer.webex.com/docs/getting-started
  2. Your token is displayed after logging in
  3. ⚠️ 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.txt

3. 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 path
  • Replace YOUR_WEBEX_BOT_TOKEN_HERE with your actual token
  • On macOS, use /venv/bin/python
  • On 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

  1. Check that paths in claude_desktop_config.json are absolute (not relative)
  2. Verify the Python virtual environment path is correct
  3. Restart Claude Desktop completely (quit, don't just close window)

"Authentication failed" errors

  1. Verify your WEBEX_ACCESS_TOKEN is correct
  2. Check that the token hasn't expired (personal tokens expire in 12 hours)
  3. Ensure the bot has been added to spaces you're trying to access

"Permission denied" errors

  1. Bot tokens need to be added to spaces before they can interact
  2. Some operations require moderator permissions
  3. 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 License

Running 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.py

Adding New Tools

  1. Define the tool in list_tools()
  2. Create a handler function handle_your_tool(args)
  3. Add the handler to call_tool()

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.

🔗 Resources

🙏 Acknowledgments

📧 Support

---

Made with ❤️ for the Cisco community

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.