@microsoft/powerbi-modeling-mcp-linux-arm64 0.5.0-beta.13 → 0.5.0-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -1
- package/LICENSE +21 -99
- package/NOTICE.txt +15014 -0
- package/README.md +33 -8
- package/dist/powerbi-modeling-mcp +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# ✨ Power BI
|
|
1
|
+
# ✨ Power BI Authoring MCP Server NPM Package
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is a JavaScript wrapper that downloads the **Power BI Authoring MCP server**, which lets an AI agent create and change Power BI semantic models through a **local MCP server**. This allows developers and AI applications to interact with Power BI models in entirely new ways, from using natural language to execute modeling changes to autonomous AI agentic development workflows.
|
|
4
4
|
|
|
5
5
|
## 💡 What can you do?
|
|
6
6
|
|
|
@@ -38,14 +38,14 @@ Configure the `mcp.json` file with the following:
|
|
|
38
38
|
```json
|
|
39
39
|
{
|
|
40
40
|
"mcpServers": {
|
|
41
|
-
"powerbi-
|
|
41
|
+
"powerbi-authoring-local": {
|
|
42
42
|
"type": "local",
|
|
43
43
|
"command": "npx",
|
|
44
44
|
"args": [
|
|
45
45
|
"-y",
|
|
46
46
|
"@microsoft/powerbi-modeling-mcp",
|
|
47
|
-
"--start"
|
|
48
|
-
|
|
47
|
+
"--start"
|
|
48
|
+
]
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -53,6 +53,17 @@ Configure the `mcp.json` file with the following:
|
|
|
53
53
|
|
|
54
54
|
**Note:** When manually configuring Visual Studio and Visual Studio Code, use `servers` instead of `mcpServers` as the root object.
|
|
55
55
|
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
Before use, you must accept the Power BI Authoring MCP End User License Agreement at **<https://github.com/microsoft/powerbi-modeling-mcp>**. To accept:
|
|
59
|
+
|
|
60
|
+
1. **Command line**: pass `--accept-eula` (or the alias `--accepteula`, case-insensitive) when
|
|
61
|
+
starting the server. This also persists acceptance.
|
|
62
|
+
2. **Environment variable**: set `PBI_MODELING_MCP_ACCEPT_EULA=true`. This grants acceptance for
|
|
63
|
+
the current process only and does **not** persist anything to disk.
|
|
64
|
+
3. **The `accept_eula` MCP tool**: an MCP client can call `accept_eula` with the required
|
|
65
|
+
`eulaUrl` argument set. This also persists acceptance.
|
|
66
|
+
|
|
56
67
|
## 🚀 Get started
|
|
57
68
|
|
|
58
69
|
**First, you must connect to a Power BI semantic model**, which can reside in Power BI Desktop, Fabric workspace or in Power BI Project (PBIP) files.
|
|
@@ -75,19 +86,33 @@ Configure the `mcp.json` file with the following:
|
|
|
75
86
|
Open semantic model from PBIP folder '[Path to the definition/ TMDL folder in the PBIP]'
|
|
76
87
|
```
|
|
77
88
|
|
|
78
|
-
Once the connection is established, you can use natural language to ask the AI agent to make any
|
|
89
|
+
Once the connection is established, you can use natural language to ask the AI agent to make any authoring changes. To get started, try one of the following scenarios.
|
|
90
|
+
|
|
91
|
+
## Local Audit Logs
|
|
92
|
+
|
|
93
|
+
The local MCP writes audit events to daily newline-delimited JSON
|
|
94
|
+
files. On Windows, the default directory is
|
|
95
|
+
`%LOCALAPPDATA%\Microsoft\PowerBI Authoring\Logs`. These files contain audit
|
|
96
|
+
metadata and do not include general console or diagnostic logs. Tenant, user,
|
|
97
|
+
and network request fields are omitted.
|
|
98
|
+
|
|
99
|
+
Use `PBI_MODELING_MCP_AUDIT_LOG_PATH` or
|
|
100
|
+
`--audit-log-path=<directory>` to override the directory. Command-line
|
|
101
|
+
configuration takes precedence. Audit logs are retained for seven days. After
|
|
102
|
+
seven days, files matching the audit filename format are removed during
|
|
103
|
+
startup. Apply appropriate file protection to the directory.
|
|
79
104
|
|
|
80
105
|
## 💬 Feedback and Support
|
|
81
106
|
|
|
82
107
|
- Check the [Troubleshooting guide](https://github.com/microsoft/powerbi-modeling-mcp/blob/main/TROUBLESHOOTING.md) to diagnose and resolve common issues.
|
|
83
|
-
- We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Power BI
|
|
108
|
+
- We're building this in the open. Your feedback is much appreciated, and will help us shape the future of the Power BI Authoring MCP server.
|
|
84
109
|
- 👉 [Open an issue](https://github.com/microsoft/powerbi-modeling-mcp/issues) in the public GitHub repository - we’d love to hear from you!
|
|
85
110
|
|
|
86
111
|
## Security
|
|
87
112
|
|
|
88
113
|
Your credentials are always handled securely through the official [Azure Identity SDK](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/identity/Azure.Identity/README.md) - **we never store or manage tokens directly**.
|
|
89
114
|
|
|
90
|
-
MCP as a phenomenon is very novel and cutting-edge. As with all new technology standards, consider doing a security review to ensure any systems that integrate with MCP servers follow all regulations and standards your system is expected to adhere to. This includes not only the Power BI
|
|
115
|
+
MCP as a phenomenon is very novel and cutting-edge. As with all new technology standards, consider doing a security review to ensure any systems that integrate with MCP servers follow all regulations and standards your system is expected to adhere to. This includes not only the Power BI Authoring MCP Server, but any MCP client/agent that you choose to implement down to the model provider.
|
|
91
116
|
|
|
92
117
|
You should follow Microsoft security guidance for MCP servers, including enabling Entra ID authentication, secure token management, and network isolation. Refer to [Microsoft Security Documentation](https://learn.microsoft.com/en-us/azure/api-management/secure-mcp-servers) for details.
|
|
93
118
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
[diffend] Oversized file quarantined before diffing.
|
|
2
2
|
name: package/dist/powerbi-modeling-mcp
|
|
3
|
-
size:
|
|
4
|
-
sha256:
|
|
3
|
+
size: 39036244 bytes
|
|
4
|
+
sha256: 0359f66699c6f09fc70c842a8993c5212149134176e996107e7d4b9c3234a7ee
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/powerbi-modeling-mcp-linux-arm64",
|
|
3
|
-
"version": "0.5.0-beta.
|
|
4
|
-
"description": "Power BI
|
|
3
|
+
"version": "0.5.0-beta.14",
|
|
4
|
+
"description": "Power BI Authoring MCP Server - Node.js client packaging to author Power BI semantic models in Power BI Desktop, Microsoft Fabric workspaces, and local PBIP and TMDL files., for linux on arm64",
|
|
5
5
|
"author": "Microsoft",
|
|
6
6
|
"homepage": "https://github.com/microsoft/powerbi-modeling-mcp#readme",
|
|
7
|
-
"license": "
|
|
7
|
+
"license": "MIT",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"powerbi",
|
|
10
10
|
"modeling",
|