Go-based Model Context Protocol server enabling AI assistants to interact with Cisco Webex APIs. Features messaging tools for rooms, teams, people & webhooks.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"webex-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A high-performance Go implementation of the Webex MCP (Model Context Protocol) Server, providing AI assistants with comprehensive access to Cisco Webex messaging, collaboration, and enterprise features.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
IMAP/SMTP email MCP server — 47 tools, IMAP IDLE push, multi-account, AI triage.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
MCP Security Weekly
Get CVE alerts and security updates for Webex Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A high-performance Go implementation of the Webex MCP (Model Context Protocol) Server, providing AI assistants with comprehensive access to Cisco Webex messaging, collaboration, and enterprise features.
make build
Find your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAdd this configuration:
{
"mcpServers": {
"webex": {
"command": "/absolute/path/to/your/webex-mcp-server/build/webex-mcp-server",
"args": ["-env", "/absolute/path/to/your/webex-mcp-server/.env", "-all-tools"],
"env": {
"WEBEX_PUBLIC_WORKSPACE_API_KEY": "your-webex-token"
}
}
}
}
In Claude, you can now say:
net/http with intelligent connection poolinggit clone https://github.com/raja-aiml/webex-mcp-server.git
cd webex-mcp-server
make deps
# Copy the example environment file
cp .env.example .env
# Edit .env and add your Webex API token
# WEBEX_PUBLIC_WORKSPACE_API_KEY=your_webex_api_token_here
Create a .env file in the project root with the following variables:
# Required: Your Webex API token
WEBEX_PUBLIC_WORKSPACE_API_KEY=your_webex_api_token_here
# Optional: Webex API base URL (default: https://webexapis.com/v1)
WEBEX_API_BASE_URL=https://webexapis.com/v1
# Optional: Server port for HTTP mode (default: 3001)
PORT=3001
This MCP server is optimized for Claude Desktop.
make build
{
"mcpServers": {
"webex": {
"command": "/full/path/to/webex-mcp-server/build/webex-mcp-server",
"args": ["-env", "/full/path/to/webex-mcp-server/.env", "-all-tools"],
"env": {
"WEBEX_PUBLIC_WORKSPACE_API_KEY": "your-token"
}
}
}
}
make run
# or
make mcp-local
make run http
# Check health endpoint
curl http://localhost:3001/health
# Build and run in Docker
make mcp-docker
# Or use docker-compose for HTTP mode
make
... [View full README on GitHub](https://github.com/raja-aiml/webex-mcp-server#readme)