rhsupportcli

karmab/rhsupportcli

3.2

If you are the rightful owner of rhsupportcli and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Model Context Protocol (MCP) server for Red Hat Support Case Management provides a structured way to interact with Red Hat's case management API, allowing for efficient and automated handling of support cases.

Basic client and mcp server around https://access.redhat.com/management/api/case_management

How to install

pip install rhsupportcli fastmcp

Configure

Get an offline token from https://access.redhat.com/management/api

  1. The server is started and configured differently depending on what transport you want to use

For STDIO:

In VSCode for example:

   "mcp": {
        "servers": {
            "Rhsupportcli": {
                "command": "python3",
                "args": ["/path/to/rhsupportcli/src/rhsupportlib/mcp_server.py"],
                "env": {
                    "OFFLINETOKEN": <your token>
                }
            }
        }
    }

For Streamable HTTP:

Start the server in a terminal:

`rhcsupportmcp``

Configure the server in the client:

    "rhsupportcli": {
      "transport": "streamable-http",
      "url": "http://localhost:8000"
      "headers": {
        "OFFLINETOKEN": "<your token>"
      }
    }