PluginBench
MCP Server
Active

io.github.fabienfrfr/pbix-atlas MCP Server

io.github.fabienfrfr/pbix-atlas

What is the io.github.fabienfrfr/pbix-atlas MCP server?

Bidirectional data lineage graph for Power BI (.pbix) files, from source to display

How to install io.github.fabienfrfr/pbix-atlas

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • PBIX_LINEAGE_PORT

    Port the server listens on

  • PBIX_LINEAGE_HOST

    Host interface to bind to

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "pbix-atlas": {
      "command": "uvx",
      "args": [
        "pbix-atlas"
      ],
      "env": {
        "PBIX_LINEAGE_PORT": "<YOUR_PBIX_LINEAGE_PORT>",
        "PBIX_LINEAGE_HOST": "<YOUR_PBIX_LINEAGE_HOST>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "pbix-atlas": {
      "command": "uvx",
      "args": [
        "pbix-atlas"
      ],
      "env": {
        "PBIX_LINEAGE_PORT": "<YOUR_PBIX_LINEAGE_PORT>",
        "PBIX_LINEAGE_HOST": "<YOUR_PBIX_LINEAGE_HOST>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "pbix-atlas": {
      "command": "uvx",
      "args": [
        "pbix-atlas"
      ],
      "env": {
        "PBIX_LINEAGE_PORT": "<YOUR_PBIX_LINEAGE_PORT>",
        "PBIX_LINEAGE_HOST": "<YOUR_PBIX_LINEAGE_HOST>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "pbix-atlas": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "pbix-atlas"
      ],
      "env": {
        "PBIX_LINEAGE_PORT": "<YOUR_PBIX_LINEAGE_PORT>",
        "PBIX_LINEAGE_HOST": "<YOUR_PBIX_LINEAGE_HOST>"
      }
    }
  }
}
Claude Code
claude mcp add pbix-atlas --env PBIX_LINEAGE_PORT=<YOUR_PBIX_LINEAGE_PORT> --env PBIX_LINEAGE_HOST=<YOUR_PBIX_LINEAGE_HOST> -- uvx pbix-atlas

Related MCP servers

Bidirectional data lineage graph for Power BI (.pbix) files, from source to display

0
Python
View repository →