gabi-mcp

andreadecorte/gabi-mcp

3.1

If you are the rightful owner of gabi-mcp 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 GABI MCP server allows users to run queries against a target using the GABI endpoint and access token.

MCP server exposing gabi.

This allows running queries against the target.

You will need to set the GABI endpoint and the relevant access token, to be passed as environment variables.

Claude Desktop config

Running with Podman or Docker

Replace ENDPOINT and REDACTED with your values

{
    "mcpServers": {
        "gabi": {
          "command": "podman",
          "args": [
            "run",
            "-i",
            "--rm",
            "-e", "ACCESS_TOKEN",
            "-e", "GABI_ENDPOINT",
            "quay.io/adecorte/gabi-mcp:0.1.1"
          ],
          "env": {
            "ACCESS_TOKEN": "REDACTED",
            "GABI_ENDPOINT": "ENDPOINT"
          }
      }
    }
}

Running directly with uv

{
    "mcpServers": {
        "gabi": {
            "command": "$PATH/uv",
            "args": [
                "--directory",
                "$YOURPATH/gabi-mcp",
                "run",
                "gabi.py"
            ]
        }
    }
}