concert-operate-mcp

concert-operate-mcp

MCP server for IBM Concert Operate that exposes the full v2 REST API as callable tools, enabling AI assistants to manage alerts, incidents, policies, runbooks, and more.

Category
访问服务器

README

concert-operate-mcp

An MCP (Model Context Protocol) server for IBM Concert Operate (formerly IBM Cloud Pak for AIOps). Connects any MCP-compatible AI assistant to your Concert Operate instance, exposing the full v2 REST API as callable tools.

Compatibility

Package version Concert Operate version
1.x 5.1.x

Prerequisites

  • Node.js 18 or later
  • A running Concert Operate instance (Cloud Pak for AIOps)

Installation

Option A — npx (recommended, no install required)

Add the following to your MCP client config (e.g. mcp.json for Bob, settings.json for GitHub Copilot, ~/.cursor/mcp.json for Cursor):

{
  "mcpServers": {
    "concert-operate": {
      "command": "npx",
      "args": ["-y", "concert-operate-mcp"],
      "env": {
        "CONCERT_BASE_URL": "https://your-instance.example.com",
        "CONCERT_CPD_USER": "cpadmin",
        "CONCERT_CPD_PASSWORD": "yourpassword"
      }
    }
  }
}

Option B — global install

npm install -g concert-operate-mcp

Then use concert-operate-mcp as the command instead of npx:

{
  "mcpServers": {
    "concert-operate": {
      "command": "concert-operate-mcp",
      "args": [],
      "env": {
        "CONCERT_BASE_URL": "https://your-instance.example.com",
        "CONCERT_CPD_USER": "cpadmin",
        "CONCERT_CPD_PASSWORD": "yourpassword"
      }
    }
  }
}

Option C — build from source

git clone https://github.com/ibm-client-engineering/concert-operate-mcp
cd concert-operate-mcp
npm install
npm run build

Then point your MCP client at the absolute path to build/index.js.

Configuration

Environment variable Required Default Description
CONCERT_BASE_URL Base URL of your Concert Operate instance, e.g. https://cpd.example.com
CONCERT_CPD_USER Cloud Pak for Data username
CONCERT_CPD_PASSWORD Cloud Pak for Data password
CONCERT_TENANT_ID cfd95b7e-3bc7-4006-a4a8-a73a79c71255 Tenant ID. The default is the standard value shipped with every Concert Operate installation. Override only if your instance uses a custom tenant ID.

Self-signed certificates

TechZone and many on-premises Concert Operate deployments use self-signed TLS certificates. The server automatically bypasses certificate verification (rejectUnauthorized: false), matching the behaviour of curl -k. If your instance has a valid trusted certificate this has no effect.

Token lifecycle

The server authenticates against the CPD platform auth endpoint (/icp4d-api/v1/authorize) on first use and caches the token for approximately 11 hours 45 minutes (proactive refresh before the ~12-hour CPD expiry). If a 401 is received mid-session the token is force-refreshed and the request is automatically retried once.

Available tools

Events

Tool Description
create-event Create a new event

Alerts

Tool Description
create-alert Create a new alert
get-alerts List alerts, optionally filtered (e.g. severity = 6 or severity = 5)
get-alert Get a single alert by ID
update-alert Update fields on an alert
bulk-update-alerts Update all alerts matching a filter
get-alert-timeline Get timeline entries for an alert
add-alert-comment Add a comment to an alert timeline
get-alert-insights Get insights for an alert
create-alert-insight Add an insight to an alert
get-alert-insight Get a specific insight by ID and type
delete-alert-insight Delete a specific insight

Incidents

Tool Description
get-incidents List all incidents
get-incident Get a single incident by ID
update-incident Update fields on an incident
get-incident-timeline Get timeline entries for an incident
add-incident-comment Add a comment to an incident timeline

Policies

Tool Description
get-policies List all policies
get-policy Get a policy by ID
create-policy Create a new policy
create-policies-bulk Create multiple policies in one request
update-policy Partially update a policy (PATCH)
replace-policy Replace a policy entirely (PUT)
delete-policy Delete a policy
get-policy-execution-status Get execution status for a policy
get-policy-timeline Get timeline entries for a policy

Runbooks

Tool Description
get-runbooks List all runbooks
get-runbook Get a runbook by ID
create-runbook Create a new runbook
update-runbook Update a runbook
delete-runbook Delete a runbook
get-runbook-versions List all versions of a runbook
get-runbook-version Get a specific runbook version
get-runbook-references Get references for a runbook
get-runbook-statistics Get execution statistics for a runbook
execute-runbook Execute a runbook
get-runbook-executions List all executions for a runbook
get-runbook-execution Get a specific execution by instance ID
update-runbook-execution Update a runbook execution
delete-runbook-execution Delete a runbook execution record

Algorithms

Tool Description
get-algorithms List all registered algorithms
get-algorithm Get an algorithm by name
register-algorithm Register a new algorithm
unregister-algorithm Unregister an algorithm

Training

Tool Description
get-training-definitions List all training definitions
get-training-definition Get a training definition by name
create-training-definition Create a training definition
update-training-definition Update a training definition
delete-training-definition Delete a training definition
get-training-status Get the latest training run status
start-training Start a training run
get-precheck-status Get the latest precheck status
start-precheck Start a precheck run
stop-precheck Stop the current precheck run
get-trained-model-versions List all trained model versions
get-trained-model-version Get a trained model version
delete-trained-model-version Delete a trained model version

Metering

Tool Description
create-metering-job Create a metering job
get-metering-job Get a metering job
get-metering-job-status Get metering job status
get-metering-job-result Get metering job result
list-metering-resources List metering resources
get-metering-aggregate-stats Get aggregate resource stats for a date range

User Preferences

Tool Description
get-my-preferences Get current user preferences
upsert-my-preference Create or update a preference
delete-my-preference Delete a preference
admin-get-all-preferences (Admin) Get all user preferences
admin-get-user-preferences (Admin) Get preferences for a user
admin-get-user-preference (Admin) Get a specific preference for a user
admin-upsert-user-preference (Admin) Create or update a preference for a user
admin-delete-user-preference (Admin) Delete a preference for a user
admin-delete-all-user-preferences (Admin) Delete all preferences for a user

Automation Tools

Tool Description
get-automation-tools List all runbook automation tools
get-automation-tool Get an automation tool
create-automation-tool Create an automation tool
update-automation-tool Update an automation tool
delete-automation-tool Delete an automation tool

UI — Menus, Views, Visualization Filters

Tool Description
get-menus / get-menu / create-menu / update-menu / delete-menu Menu CRUD
get-views / get-view / create-view / update-view / delete-view / check-view-name-exists View CRUD
get-viz-filters / get-viz-filter / create-viz-filter / update-viz-filter / delete-viz-filter / delete-viz-filters-bulk / check-viz-filter-name-exists Visualization filter CRUD

Topology UI Configuration

Tool Description
backup-topology-ui-config Backup topology UI configuration
restore-topology-ui-config Restore topology UI configuration

Development

git clone https://github.com/ibm-client-engineering/concert-operate-mcp
cd concert-operate-mcp
npm install
npm run build        # compiles src/index.ts → build/index.js
npm run dev          # watch mode

To test locally with the MCP Inspector:

$env:CONCERT_BASE_URL="https://your-instance.example.com"
$env:CONCERT_CPD_USER="cpadmin"
$env:CONCERT_CPD_PASSWORD="yourpassword"
npx @modelcontextprotocol/inspector node build/index.js

Releasing a new version

  1. Make and test your changes

  2. Run npm run build to confirm it compiles cleanly

  3. Bump the version and create the git tag:

    npm version patch   # bug fix:        1.0.0 → 1.0.1
    npm version minor   # new endpoints:  1.0.0 → 1.1.0
    npm version major   # breaking change (new Concert major): 1.0.0 → 2.0.0
    
  4. Push the commit and tag:

    git push --follow-tags
    

The GitHub Actions workflow triggers automatically on the tag push, builds the package, and publishes it to npm. No manual npm publish needed.

Version compatibility

npm package major Concert Operate version
1.x 5.1.x

When a new major Concert Operate version introduces breaking API changes, bump the npm major version and update this table.

Contributing

Issues and pull requests welcome. When adding tools for a new API version, please update the compatibility table above.

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选