MCP Server
MCP
io.github.rod-anami-kyndryl/bmc-helix-mcp
A MCP Server for BMC Helix ITSM API.
Install
npx -y [email protected]
Configuration Example
{
"remotes": [],
"packages": [
{
"registryType": "npm",
"identifier": "bmc-helix-mcp",
"version": "0.1.1",
"transport": {
"type": "streamable-http",
"url": "http://localhost:{MCP_PORT}/mcp"
},
"environmentVariables": [
{
"description": "BMC Helix Entry level REST API URL endpoint.",
"isRequired": true,
"format": "string",
"default": "https://your-helix-instance.onbmc.com/api/arsys/v1/entry/",
"placeholder": "https://your-helix-instance.onbmc.com/api/arsys/v1/entry/",
"name": "HELIX_API_URL"
},
{
"description": "BMC Helix JWT Login endpoint URL.",
"isRequired": true,
"format": "string",
"default": "https://your-helix-instance.onbmc.com/api/jwt/login",
"placeholder": "https://your-helix-instance.onbmc.com/api/jwt/login",
"name": "HELIX_TOKEN_URL"
},
{
"description": "BMC Helix API Username/UserID.",
"isRequired": true,
"format": "string",
"placeholder": "your_username",
"name": "HELIX_USERID"
},
{
"description": "BMC Helix API User Password.",
"isRequired": true,
"format": "string",
"isSecret": true,
"placeholder": "your_password",
"name": "HELIX_PASSWORD"
},
{
"description": "Path to the retrieved BMC Helix TLS certificate chain.",
"format": "filepath",
"default": "./certs/helix-certs.pem",
"placeholder": "./certs/helix-certs.pem",
"name": "HELIX_CERT_PATH"
},
{
"description": "The port number on which the MCP Server should run.",
"format": "number",
"default": "4044",
"placeholder": "4044",
"name": "MCP_PORT"
},
{
"description": "Optional Bearer token to secure the MCP Server communication.",
"format": "string",
"isSecret": true,
"placeholder": "your_mcp_secret_token",
"name": "MCP_AUTH_TOKEN"
},
{
"description": "Set to true to run the MCP Server with secure TLS (HTTPS).",
"format": "boolean",
"default": "true",
"name": "MCP_TLS_ENABLED"
},
{
"description": "Path to the TLS private key file.",
"format": "filepath",
"default": "./certs/mcp-server.key",
"placeholder": "./certs/mcp-server.key",
"name": "MCP_TLS_KEY"
},
{
"description": "Path to the TLS certificate file.",
"format": "filepath",
"default": "./certs/mcp-server.crt",
"placeholder": "./certs/mcp-server.crt",
"name": "MCP_TLS_CERT"
},
{
"description": "Path to the TLS Certificate Authority (CA) file.",
"format": "filepath",
"default": "./certs/ca.crt",
"placeholder": "./certs/ca.crt",
"name": "MCP_TLS_CA"
}
]
}
]
}
mcp
model-context-protocol
npm
By
Comments
Sign in to leave a comment