Back to Browse

Bmc Helix MCP Server

Developer ToolsUse Caution4.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

A MCP Server for BMC Helix ITSM API.

About

A MCP Server for BMC Helix ITSM API.

Security Report

4.2
Use Caution4.2High Risk

The BMC Helix MCP server is a well-structured TypeScript application with proper authentication controls and reasonable permissions for its SRE/ITSM integration purpose. However, there are several security concerns that warrant attention: insecure default SSL/TLS configuration (rejectUnauthorized: false), credentials stored in environment variables without strong defaults, and potential credential exposure through logging. The authentication mechanism is properly implemented and the codebase is clean, but the SSL/TLS defaults and error handling could expose sensitive data. Supply chain analysis found 10 known vulnerabilities in dependencies (0 critical, 7 high severity). Package verification found 1 issue.

5 files analyzed · 20 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

network_https

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

What You'll Need

Set these up before or after installing:

BMC Helix Entry level REST API URL endpoint.Optional

Environment variable: HELIX_API_URL

BMC Helix JWT Login endpoint URL.Optional

Environment variable: HELIX_TOKEN_URL

BMC Helix API Username/UserID.Optional

Environment variable: HELIX_USERID

BMC Helix API User Password.Required

Environment variable: HELIX_PASSWORD

Path to the retrieved BMC Helix TLS certificate chain.Optional

Environment variable: HELIX_CERT_PATH

The port number on which the MCP Server should run.Optional

Environment variable: MCP_PORT

Optional Bearer token to secure the MCP Server communication.Required

Environment variable: MCP_AUTH_TOKEN

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

Environment variable: MCP_TLS_ENABLED

Path to the TLS private key file.Optional

Environment variable: MCP_TLS_KEY

Path to the TLS certificate file.Optional

Environment variable: MCP_TLS_CERT

Path to the TLS Certificate Authority (CA) file.Optional

Environment variable: MCP_TLS_CA

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-rod-anami-kyndryl-bmc-helix-mcp": {
      "env": {
        "MCP_PORT": "your-mcp-port-here",
        "MCP_TLS_CA": "your-mcp-tls-ca-here",
        "MCP_TLS_KEY": "your-mcp-tls-key-here",
        "HELIX_USERID": "your-helix-userid-here",
        "MCP_TLS_CERT": "your-mcp-tls-cert-here",
        "HELIX_API_URL": "your-helix-api-url-here",
        "HELIX_PASSWORD": "your-helix-password-here",
        "MCP_AUTH_TOKEN": "your-mcp-auth-token-here",
        "HELIX_CERT_PATH": "your-helix-cert-path-here",
        "HELIX_TOKEN_URL": "your-helix-token-url-here",
        "MCP_TLS_ENABLED": "your-mcp-tls-enabled-here"
      },
      "args": [
        "-y",
        "bmc-helix-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

BMC Helix MCP Server

The BMC Helix MCP Server is a Model Context Protocol (MCP) server for SRE operations using BMC Helix ITSM REST APIs. It is implemented in TypeScript, powered by Express, and optionally configurable with HTTPS/TLS.

For details on releases and updates, see the Changelog.

Project Features

  • Model Context Protocol (MCP) Support: Built with @modelcontextprotocol/sdk to seamlessly integrate with LLMs and coding assistants.
  • Form & CI Operations: Wraps native BMC Helix ITSM REST API calls for fetching and paginating table data, CMDB CI querying by ID or Name, tasks, associations, and relationship checking.
  • Express + HTTPS: Supports standard HTTP as well as secure HTTPS with complete TLS certificate validation configurations.
  • Node v24 and modern ES Module structure.

Directory Structure

  • src/mcp-server.ts: Fully-typed, rate-limited MCP Server application featuring express transport and tool mappings.
  • certs/: Holds local client and server CA keys, configurations, and scripts for secure TLS enablement.
  • tests/: Integration tests using a mock Helix Server to validate server endpoints, authorization, and tool schemas.

Registered MCP Tools

The server registers the following high-value tools:

  1. helix_get_table_data: Retrieve records from any BMC Helix form (e.g., HPD:IncidentInterface, CHG:Infrastructure Change) with optional query filters and record limits.
  2. helix_get_table_data_paginated: Automatically fetches and aggregates multi-page records from a form using offset-based pagination.
  3. helix_get_ci_by_id: Get a configuration item's attributes from BMC.CORE:BMC_BaseElement by its unique entry Request ID.
  4. helix_get_ci_by_name: Find CMDB records by name.
  5. helix_get_change_request_tasks: Retrieves children task lists from TMS:Task for a given Change ID (CRQ...).
  6. helix_get_problem_investigation_id: Finds the associated Problem ID for a given incident ticket.
  7. helix_get_change_configuration_items: Finds AST configuration items associated with a Change ID.

Installation & Setup

  1. Copy .env.example to .env and fill in your details:
cp .env.example .env
  1. Configuration Settings in .env:
  • HELIX_API_URL: BMC Helix Entry level URL endpoint.
  • HELIX_TOKEN_URL: JWT Login payload URL endpoint.
  • HELIX_USERID / HELIX_PASSWORD: Helix API Credentials.
  • MCP_PORT: Web server running port (defaults to 3000).
  • MCP_AUTH_TOKEN: Optional API Authorization Bearer token to secure the MCP endpoint from external entities.
  • MCP_TLS_ENABLED: Set to true to enable TLS on the express listener.
  1. Retrieve TLS Certificates from BMC Helix:

If your BMC Helix instance uses self-signed, internal, or custom CA certificates, you can automatically retrieve the certificate chain using the helper script:

./certs/helix-certs.sh https://your-helix-instance.onbmc.com

This retrieves the website's certificate chain via openssl and saves it to certs/helix-certs.pem. Then, reference it in your .env configuration:

HELIX_CERT_PATH=./certs/helix-certs.pem
  1. Install dependencies:
npm install
  1. Build the application:
npm run build
  1. Start the server (Dev / Production):
  • Production Mode: npm run start
  • Development Mode: npm run dev

Testing

The project includes an integration test suite implemented with Node's native test runner (via --test). It runs against a mock BMC Helix server environment to validate:

  • Server initialization & health status checks.
  • API authentication and security authorization filters (e.g., verifying MCP_AUTH_TOKEN behavior).
  • Tool definitions and structural query capability.
  • Exact end-to-end flow execution for tool retrievals (helix_get_table_data, helix_get_table_data_paginated, CI queries, and Change/Problem relationships).

To execute the test suite:

npm test

This command will compile the TypeScript codebase into the production output directory, launch the integrated mock server, spawn the MCP Server as an isolated subprocess, and execute all validation assertions.


Contributing

We welcome contributions to this project! To contribute, please make sure your commits are signed off to certify compliance with the Developer Certificate of Origin (DCO).

Developer Certificate of Origin 1.1

DCO is a lightweight legal framework that ensures contributors have the right to submit their code under the project's open source license. By signing off your commits, you certify that you have the right to contribute the code and that it complies with the project's licensing terms.

DCO

How to Sign Off

To certify your agreement with the DCO, add a Signed-off-by line to every commit message. You can do this automatically by signing off your commit with the -s or --signoff flag:

git commit -s -m "Your commit message"

This will append a line like the following to your commit message:

Signed-off-by: Jane Doe <jane.doe@example.com>

Changelog

See CHANGELOG.md for a history of changes.

License

This project is licensed under the MIT License.

Reviews

No reviews yet

Be the first to review this server!