Skip to content
VS Code

mulewatch for VS Code

io.github.brbousnguar/mulewatch

Read-only MCP server for MuleSoft Anypoint: app logs, archive search, Runtime Manager, Exchange.

client:VS Code transport:stdio runtime:npm

Install mulewatch in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anypoint-client-id",
      "description": "ANYPOINT_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anypoint-client-secret",
      "description": "ANYPOINT_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anypoint-org-id",
      "description": "ANYPOINT_ORG_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anypoint-allowed-environments",
      "description": "ANYPOINT_ALLOWED_ENVIRONMENTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anypoint-base-url",
      "description": "ANYPOINT_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anypoint-monitoring-base-url",
      "description": "ANYPOINT_MONITORING_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mulewatch": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mulewatch"
      ],
      "env": {
        "ANYPOINT_CLIENT_ID": "${input:anypoint-client-id}",
        "ANYPOINT_CLIENT_SECRET": "${input:anypoint-client-secret}",
        "ANYPOINT_ORG_ID": "${input:anypoint-org-id}",
        "ANYPOINT_ALLOWED_ENVIRONMENTS": "${input:anypoint-allowed-environments}",
        "ANYPOINT_BASE_URL": "${input:anypoint-base-url}",
        "ANYPOINT_MONITORING_BASE_URL": "${input:anypoint-monitoring-base-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mulewatch in other clients