PluginBench
MCP Server
Maintained

io.github.rod-anami-kyndryl/bmc-helix-mcp MCP Server

io.github.rod-anami-kyndryl/bmc-helix-mcp

What is the io.github.rod-anami-kyndryl/bmc-helix-mcp MCP server?

A MCP Server for BMC Helix ITSM API.

How to install io.github.rod-anami-kyndryl/bmc-helix-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • HELIX_API_URL
    required

    BMC Helix Entry level REST API URL endpoint.

  • HELIX_TOKEN_URL
    required

    BMC Helix JWT Login endpoint URL.

  • HELIX_USERID
    required

    BMC Helix API Username/UserID.

  • HELIX_PASSWORD
    required
    secret

    BMC Helix API User Password.

  • HELIX_CERT_PATH

    Path to the retrieved BMC Helix TLS certificate chain.

  • MCP_PORT

    The port number on which the MCP Server should run.

  • MCP_AUTH_TOKEN
    secret

    Optional Bearer token to secure the MCP Server communication.

  • MCP_TLS_ENABLED

    Set to true to run the MCP Server with secure TLS (HTTPS).

  • MCP_TLS_KEY

    Path to the TLS private key file.

  • MCP_TLS_CERT

    Path to the TLS certificate file.

  • MCP_TLS_CA

    Path to the TLS Certificate Authority (CA) file.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "bmc-helix-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bmc-helix-mcp"
      ],
      "env": {
        "HELIX_API_URL": "<YOUR_HELIX_API_URL>",
        "HELIX_TOKEN_URL": "<YOUR_HELIX_TOKEN_URL>",
        "HELIX_USERID": "<YOUR_HELIX_USERID>",
        "HELIX_PASSWORD": "<YOUR_HELIX_PASSWORD>",
        "HELIX_CERT_PATH": "<YOUR_HELIX_CERT_PATH>",
        "MCP_PORT": "<YOUR_MCP_PORT>",
        "MCP_AUTH_TOKEN": "<YOUR_MCP_AUTH_TOKEN>",
        "MCP_TLS_ENABLED": "<YOUR_MCP_TLS_ENABLED>",
        "MCP_TLS_KEY": "<YOUR_MCP_TLS_KEY>",
        "MCP_TLS_CERT": "<YOUR_MCP_TLS_CERT>",
        "MCP_TLS_CA": "<YOUR_MCP_TLS_CA>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "bmc-helix-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bmc-helix-mcp"
      ],
      "env": {
        "HELIX_API_URL": "<YOUR_HELIX_API_URL>",
        "HELIX_TOKEN_URL": "<YOUR_HELIX_TOKEN_URL>",
        "HELIX_USERID": "<YOUR_HELIX_USERID>",
        "HELIX_PASSWORD": "<YOUR_HELIX_PASSWORD>",
        "HELIX_CERT_PATH": "<YOUR_HELIX_CERT_PATH>",
        "MCP_PORT": "<YOUR_MCP_PORT>",
        "MCP_AUTH_TOKEN": "<YOUR_MCP_AUTH_TOKEN>",
        "MCP_TLS_ENABLED": "<YOUR_MCP_TLS_ENABLED>",
        "MCP_TLS_KEY": "<YOUR_MCP_TLS_KEY>",
        "MCP_TLS_CERT": "<YOUR_MCP_TLS_CERT>",
        "MCP_TLS_CA": "<YOUR_MCP_TLS_CA>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "bmc-helix-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bmc-helix-mcp"
      ],
      "env": {
        "HELIX_API_URL": "<YOUR_HELIX_API_URL>",
        "HELIX_TOKEN_URL": "<YOUR_HELIX_TOKEN_URL>",
        "HELIX_USERID": "<YOUR_HELIX_USERID>",
        "HELIX_PASSWORD": "<YOUR_HELIX_PASSWORD>",
        "HELIX_CERT_PATH": "<YOUR_HELIX_CERT_PATH>",
        "MCP_PORT": "<YOUR_MCP_PORT>",
        "MCP_AUTH_TOKEN": "<YOUR_MCP_AUTH_TOKEN>",
        "MCP_TLS_ENABLED": "<YOUR_MCP_TLS_ENABLED>",
        "MCP_TLS_KEY": "<YOUR_MCP_TLS_KEY>",
        "MCP_TLS_CERT": "<YOUR_MCP_TLS_CERT>",
        "MCP_TLS_CA": "<YOUR_MCP_TLS_CA>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "bmc-helix-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bmc-helix-mcp"
      ],
      "env": {
        "HELIX_API_URL": "<YOUR_HELIX_API_URL>",
        "HELIX_TOKEN_URL": "<YOUR_HELIX_TOKEN_URL>",
        "HELIX_USERID": "<YOUR_HELIX_USERID>",
        "HELIX_PASSWORD": "<YOUR_HELIX_PASSWORD>",
        "HELIX_CERT_PATH": "<YOUR_HELIX_CERT_PATH>",
        "MCP_PORT": "<YOUR_MCP_PORT>",
        "MCP_AUTH_TOKEN": "<YOUR_MCP_AUTH_TOKEN>",
        "MCP_TLS_ENABLED": "<YOUR_MCP_TLS_ENABLED>",
        "MCP_TLS_KEY": "<YOUR_MCP_TLS_KEY>",
        "MCP_TLS_CERT": "<YOUR_MCP_TLS_CERT>",
        "MCP_TLS_CA": "<YOUR_MCP_TLS_CA>"
      }
    }
  }
}
Claude Code
claude mcp add bmc-helix-mcp --env HELIX_API_URL=<YOUR_HELIX_API_URL> --env HELIX_TOKEN_URL=<YOUR_HELIX_TOKEN_URL> --env HELIX_USERID=<YOUR_HELIX_USERID> --env HELIX_PASSWORD=<YOUR_HELIX_PASSWORD> --env HELIX_CERT_PATH=<YOUR_HELIX_CERT_PATH> --env MCP_PORT=<YOUR_MCP_PORT> --env MCP_AUTH_TOKEN=<YOUR_MCP_AUTH_TOKEN> --env MCP_TLS_ENABLED=<YOUR_MCP_TLS_ENABLED> --env MCP_TLS_KEY=<YOUR_MCP_TLS_KEY> --env MCP_TLS_CERT=<YOUR_MCP_TLS_CERT> --env MCP_TLS_CA=<YOUR_MCP_TLS_CA> -- npx -y bmc-helix-mcp

Related MCP servers

Control a real Chrome browser to complete any task: fill forms, extract data, book flights.

110k
Python
MIT
View repository →

Real-time global intelligence: markets, conflicts, country risk, energy, and infrastructure monitoring via 39 MCP tools.

83k
TypeScript
AGPL-3.0
View repository →

Netdata

Active

Real-time infrastructure monitoring with per-second metrics, ML-powered anomaly detection, and zero-configuration setup.

80k
Go
GPL-3.0
View repository →

Trending hip-hop artist momentum scores across four cultural dimensions.

79k
TypeScript
MIT
View repository →

AI orchestration platform with 100+ agents, swarm coordination, and self-learning memory for enterprise development.

68k
TypeScript
MIT
View repository →

Web scraping with stealth HTTP, real browsers, and Cloudflare bypass capabilities.

67k
Python
BSD-3-Clause
View repository →