A comprehensive MCP server providing AI assistants with full access to Cisco Webex messaging capabilities including messages, rooms, teams, people
Webex messaging mcp server lets Claude, Cursor and other MCP clients work with Webex Messaging directly. A comprehensive MCP server providing AI assistants with full access to Cisco Webex messaging capabilities including messages, rooms, teams, people, webhooks, and enterprise features.
A Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to Cisco Webex messaging capabilities.
This MCP server enables AI assistants to interact with Webex messaging through 52 different tools covering:
Once connected, the assistant can call these 2 tools directly:
Prerequisites — The Prerequisites tool exposed by this serverInstallation — 1. Clone and install dependencies: bash git clone cd webex-messaging-mcp-server npm installSetup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.
Before the server will start you need to supply 4 environment variables: WEBEX_USER_EMAIL, WEBEX_API_BASE_URL, WEBEX_PUBLIC_WORKSPACE_API_KEY, GEMINI_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.
fetch won't be present. Tools use fetch to make HTTP calls. To work around this, you can modify the tools to use node-fetch instead. Make sure that node-fetch is installed as a dependency and then import it as fetch into each tool file. - Docker (optional, for containerized deployment) - Webex API tokenCommunication servers earn their keep on volume — summarising channels and threads that would otherwise cost you an hour of scrollback. Webex Messaging sits in that group, and the shape of its toolset — Prerequisites, Installation — tells you what it is really for. Worth comparing against the other communication servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| Prerequisites | The Prerequisites tool exposed by this server. |
| Installation | 1. **Clone and install dependencies:** bash git clone <repository-url> cd webex-messaging-mcp-server npm install |
{
"mcpServers": {
"webex-messaging": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"WEBEX_PUBLIC_WORKSPACE_API_KEY",
"-e",
"WEBEX_USER_EMAIL",
"-e",
"WEBEX_API_BASE_URL",
"webex-mcp-server"
],
"env": {
"WEBEX_USER_EMAIL": "your.email@company.com",
"WEBEX_API_BASE_URL": "https://webexapis.com/v1",
"WEBEX_PUBLIC_WORKSPACE_API_KEY": "your_token_here"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
fetch won't be present. Tools use fetch to make HTTP calls. To work around this, you can modify the tools to use node-fetch instead. Make sure that node-fetch is installed as a dependency and then import it as fetch into each tool file. - Docker (optional, for containerized deployment) - Webex API token| Variable | Description | Required |
|---|---|---|
| WEBEX_USER_EMAIL | Configuration value read at startup. | Optional |
| WEBEX_API_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| WEBEX_PUBLIC_WORKSPACE_API_KEY | Credential the server authenticates with. | Yes |
| GEMINI_API_KEY | Credential the server authenticates with. | Yes |
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Inbox intelligence — search, read, draft and send Gmail through your assistant with OAuth auto-setup.
Read and write Jira, Confluence, Bitbucket, JSM and Compass from your AI client — with your own permissions.
Read and send Telegram messages through your assistant — chats, channels and history via the client API.
Enables Discord bot integration with Model Context Protocol (MCP) compatible applications like Claude Desktop.
Exposes REST APIs defined by OpenAPI specifications as Model Context Protocol (MCP) tools, facilitating seamless integration into MCP-based workflows.