Webex MCP Server

A NodeJS MCP server for interacting with Webex Spaces

Local serverstdioTypeScript

What is the Webex MCP server?

Webex MCP server exists for a simple reason — assistants are far more useful when they can act on Webex directly instead of describing what you should do. A NodeJS MCP server for interacting with Webex Spaces.

What you get

A TypeScript implementation of a Model Context Protocol (MCP) server that integrates with Webex's API.

What the assistant can call

Once Webex is connected, these are the calls the assistant has available:

  • Installation — 1. Clone the repository from GitHub BASH git clone https://github.com/bharath063/webex-mcp 2. Install dependencies BASH npm install 3. Build the
  • Usage — Connecting to Claude Desktop Add this to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on
  • Development — The Development tool exposed by this server

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

Configuration and credentials

You will need one environment variable: WEBEX_ACCESS_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js 16.x or higher * NPM or yarn * A Webex access token

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Webex's toolset — Installation, Usage, Development — is a fair guide to whether it matches your workflow. It is maintained by bharath063; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Webex's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the webex mcp server does with a few real requests.

Available tools

ToolWhat it does
Installation1. Clone the repository from GitHub BASH git clone https://github.com/bharath063/webex-mcp 2. Install dependencies BASH npm install 3. Build the project BASH npm run build After building, a dist/index.js file will be gen
UsageConnecting to Claude Desktop Add this to your Claude Desktop configuration file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows): json {
DevelopmentThe Development tool exposed by this server.

Configuration

  • Node.js 16.x or higher * NPM or yarn * A Webex access token
VariableDescriptionRequired
WEBEX_ACCESS_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Webex to Installation.
  • Use Webex to Usage.
  • Use Webex to Development.

Frequently asked questions

Node.js 16.x or higher, NPM or yarn, and a valid Webex access token.