Watson Orchestrate MCP Server

Manage IBM Watson Orchestrate tools, agents, connections from Cursor, Copilot, Claude.

Remote serverstreamable-httpPython

What is the Watson Orchestrate MCP server?

Manage IBM Watson Orchestrate tools, agents, connections from Cursor, Copilot, Claude. That is what the watson orchestrate mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

MCP server for IBM Watson Orchestrate (WXO). Manage tools, agents, connections, flows, and execute tools from Cursor, VS Code Copilot, Claude Desktop, Antigravity, Windsurf, or the WxO Builder extension.

The tools it exposes

The server publishes 4 tools. What each one is for:

  • Agents — The Agents tool exposed by this server
  • Connections — The Connections tool exposed by this server
  • Flows — The Flows tool exposed by this server
  • Cursor — Config file: .cursor/mcp.json (project) or ~/.cursor/mcp.json (global). Uses mcpServers (not servers). Same command and args as above

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: WO_API_KEY, WO_INSTANCE_URL, WO_AGENT_ID, YOUR_APP_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Watson Orchestrate's toolset — Agents, Connections, Flows and 1 more — is a fair guide to whether it matches your workflow. It is maintained by markusvankempen; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
AgentsThe Agents tool exposed by this server.
ConnectionsThe Connections tool exposed by this server.
FlowsThe Flows tool exposed by this server.
CursorConfig file: **.cursor/mcp.json** (project) or ~/.cursor/mcp.json (global). Uses mcpServers (not servers). Same command and args as above.

How to install the Watson Orchestrate MCP server

{
  "mcpServers": {
    "wxo-builder": {
      "command": "npx",
      "args": ["-y", "wxo-builder-mcp-server"],
      "env": {
        "WO_API_KEY": "your-value",
        "WO_INSTANCE_URL": "your-value",
        "WO_AGENT_ID": "your-value",
        "YOUR_APP_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
WO_API_KEYCredential the server authenticates with.Yes
WO_INSTANCE_URLEndpoint or connection string the server talks to.Yes
WO_AGENT_IDConfiguration value read at startup.Optional
YOUR_APP_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Watson Orchestrate to Agents.
  • Use Watson Orchestrate to Connections.
  • Use Watson Orchestrate to Flows.

Frequently asked questions

It connects Watson Orchestrate to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Agents, Connections, Flows, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Watson Orchestrate directly.