What is the Powerbi MCP server?
MCP server for Power BI API integration
How to install Powerbi
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
POWERBI_API_KEYrequiredsecretAPI Key for POWERBI
POWERBI_API_URLAPI URL for POWERBI
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"powerbi-mcp-server": {
"command": "uvx",
"args": [
"powerbi-mcp-server"
],
"env": {
"POWERBI_API_KEY": "<YOUR_POWERBI_API_KEY>",
"POWERBI_API_URL": "<YOUR_POWERBI_API_URL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"powerbi-mcp-server": {
"command": "uvx",
"args": [
"powerbi-mcp-server"
],
"env": {
"POWERBI_API_KEY": "<YOUR_POWERBI_API_KEY>",
"POWERBI_API_URL": "<YOUR_POWERBI_API_URL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"powerbi-mcp-server": {
"command": "uvx",
"args": [
"powerbi-mcp-server"
],
"env": {
"POWERBI_API_KEY": "<YOUR_POWERBI_API_KEY>",
"POWERBI_API_URL": "<YOUR_POWERBI_API_URL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"powerbi-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"powerbi-mcp-server"
],
"env": {
"POWERBI_API_KEY": "<YOUR_POWERBI_API_KEY>",
"POWERBI_API_URL": "<YOUR_POWERBI_API_URL>"
}
}
}
}Claude Code
claude mcp add powerbi-mcp-server --env POWERBI_API_KEY=<YOUR_POWERBI_API_KEY> --env POWERBI_API_URL=<YOUR_POWERBI_API_URL> -- uvx powerbi-mcp-server