MCP server for locally running Tabular Models, i.e. PowerBI models running on PowerBI Desktop.
This server allows an MCP-enabled LLM Client to communicate with your tabular models and help you debug, analyse and compose DAX queries.
Server Config
{
"mcpServers": {
"tabular-mcp": {
"type": "stdio",
"command": "dotnet",
"envFile": "${workspaceFolder}/.env",
"args": [
"run",
"--project",
"${workspaceFolder}/pbi-local-mcp/pbi-local-mcp.csproj"
]
}
}
}