denushp/ibm-mq-mcp
A Go-based MCP (Model Context Protocol) server for IBM MQ management via PCF (Programmable Command Format) commands over stdio.
Platform-specific configuration:
{
"mcpServers": {
"ibm-mq-mcp": {
"command": "npx",
"args": [
"-y",
"ibm-mq-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Go-based MCP (Model Context Protocol) server for IBM MQ management via PCF (Programmable Command Format) commands over stdio.
This repository is designed for AI-assisted IBM MQ work:
ibm-mq MCP server when the conversation turns into queue manager, queue, channel, or message workskills/ibm-mq-mcp/ that can be installed into Codex or ClaudeCLAUDE.md) and Codex-style agents (AGENTS.md).mcp.jsonAfter building ibm-mq-mcp, you can install the shared skill plus Codex and Claude MCP registrations with one script:
./scripts/install-ai-tooling.sh \
--mq-install-path "$MQ_INSTALL_PATH" \
--binary "$(pwd)/ibm-mq-mcp"Preview only:
./scripts/install-ai-tooling.sh \
--mq-install-path "$MQ_INSTALL_PATH" \
--binary "$(pwd)/ibm-mq-mcp" \
--dry-runThe installer:
~/.codex/skills/ibm-mq-mcp~/.claude/skills/ibm-mq-mcpibm-mq MCP entryibm-mq MCP entryYou can limit installation to one tool:
./scripts/install-ai-tooling.sh --mq-install-path "$MQ_INSTALL_PATH" --codex-only
./scripts/install-ai-tooling.sh --mq-install-path "$MQ_INSTALL_PATH" --claude-only如果你希望 Claude Code 和 Codex 在本地都能直接调用 IBM MQ MCP,最短路径是:
MQ_INSTALL_PATH=/path/to/ibm-mqmqclient tag 编译真实可连接 MQ 的二进制示例:
export MQ_INSTALL_PATH=/path/to/ibm-mq
export CGO_LDFLAGS="-L$MQ_INSTALL_PATH/lib64"
go build -tags mqclient -o ./ibm-mq-mcp ./cmd/ibm-mq-mcp
./scripts/install-ai-tooliLoading reviews...