@microsoft/powerbi-modeling-mcp-linux-x64 0.5.0-beta.12 → 0.5.0-beta.13
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 +6 -0
- package/dist/powerbi-modeling-mcp +0 -0
- package/index.js +1 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
The Power BI Modeling MCP Server is a multiplatform application that updates automatically in internal flows. Updates will be released periodically.
|
|
4
4
|
|
|
5
|
+
## [0.5.0-beta.13] - 2026-08-27 - Pre-release
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- Support connections to models for users with only Build permission. This creates a 'query-only' connection, which allows executing DAX queries but blocks most other operations.
|
|
10
|
+
|
|
5
11
|
## [0.5.0-beta.12] - 2026-07-29 - Pre-release
|
|
6
12
|
|
|
7
13
|
### Features
|
|
Binary file
|
package/index.js
CHANGED
|
@@ -29,10 +29,7 @@ function debugLog(...args) {
|
|
|
29
29
|
*/
|
|
30
30
|
function runExecutable(args = []) {
|
|
31
31
|
debugLog('\nPlatform package starting')
|
|
32
|
-
debugLog(
|
|
33
|
-
args.forEach((val, index) => {
|
|
34
|
-
debugLog(`${index}: ${val}`)
|
|
35
|
-
})
|
|
32
|
+
debugLog(`Argument count: ${args.length}`)
|
|
36
33
|
|
|
37
34
|
try {
|
|
38
35
|
const packageJson = require('./package.json')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/powerbi-modeling-mcp-linux-x64",
|
|
3
|
-
"version": "0.5.0-beta.
|
|
3
|
+
"version": "0.5.0-beta.13",
|
|
4
4
|
"description": "Power BI Modeling MCP Server - Node.js client package for installing and running the Power BI Modeling MCP server, for linux on x64",
|
|
5
5
|
"author": "Microsoft",
|
|
6
6
|
"homepage": "https://github.com/microsoft/powerbi-modeling-mcp#readme",
|