Watson Orchestrate for VS Code
io.github.markusvankempen/wxo-builder-mcp-server
Manage IBM Watson Orchestrate tools, agents, connections from Cursor, Copilot, Claude.
client:VS Code
transport:stdio
runtime:npm
Install Watson Orchestrate in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wo-api-key",
"description": "WO_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "wo-instance-url",
"description": "WO_INSTANCE_URL",
"password": true
}
],
"servers": {
"wxo-builder-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@markusvankempen/wxo-builder-mcp-server"
],
"env": {
"WO_API_KEY": "${input:wo-api-key}",
"WO_INSTANCE_URL": "${input:wo-instance-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs