@microsoft/powerbi-modeling-mcp 0.5.0-beta.10 → 0.5.0-beta.11

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/index.js +2 -2
  3. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
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.11] - 2026-06-25 - Pre-release
6
+
7
+ ### Features
8
+
9
+ - Tools with an `ExportTMDL` operation have standardized functionality regarding writing content to file, outputting content in tool call response, and content length truncation. Serialization uses different default values when options are not specified. `database_operations` tool `ExportTMSL` operation returns TMSL content in response.
10
+ - Allow IsKey property on columns being set or updated for all tables.
11
+ - Add shared Analysis Services connect timeout parameter
12
+ - Skip write-operation confirmation prompts by default. Provide --require-confirmation flag
13
+
5
14
  ## [0.5.0-beta.10] - 2026-06-11 - Pre-release
6
15
 
7
16
  ### Features
@@ -12,7 +21,7 @@ The Power BI Modeling MCP Server is a multiplatform application that updates aut
12
21
 
13
22
  - Removing structured content from the tool responses to prevent MCP clients from duplicating responses
14
23
  - Remove `success` property from responses, as it sometimes confuses LLMs on failure
15
- - Strip Analysis Services privacy markers (`<ccon>`, `<pii>`) from tool responses to remove telemetry noise from LLM-visible output (addresses ADO #2116711)
24
+ - Strip Analysis Services privacy markers (`<ccon>`, `<pii>`) from tool responses to remove telemetry noise from LLM-visible output
16
25
 
17
26
  ### Security 🛡️
18
27
 
package/index.js CHANGED
@@ -76,8 +76,8 @@ if (!SEMVER_RE.test(version) && !DIST_TAG_RE.test(version)) {
76
76
  }
77
77
  const platformPackageName = `${packageName}-${platform}-${arch}`
78
78
 
79
- console.log(`Detected platform: ${platform}, architecture: ${arch}`)
80
- console.log(`Using ${platformPackageName} version: ${version}`)
79
+ debugLog(`Detected platform: ${platform}, architecture: ${arch}`)
80
+ debugLog(`Using ${platformPackageName} version: ${version}`)
81
81
 
82
82
  // Try to load the platform package
83
83
  let platformPackage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/powerbi-modeling-mcp",
3
- "version": "0.5.0-beta.10",
3
+ "version": "0.5.0-beta.11",
4
4
  "description": "Power BI Modeling MCP Server - Node.js client package for installing and running the Power BI Modeling MCP server",
5
5
  "author": "Microsoft",
6
6
  "homepage": "https://github.com/microsoft/powerbi-modeling-mcp#readme",
@@ -38,11 +38,11 @@
38
38
  "arm64"
39
39
  ],
40
40
  "optionalDependencies": {
41
- "@microsoft/powerbi-modeling-mcp-win32-arm64": "0.5.0-beta.10",
42
- "@microsoft/powerbi-modeling-mcp-linux-arm64": "0.5.0-beta.10",
43
- "@microsoft/powerbi-modeling-mcp-darwin-arm64": "0.5.0-beta.10",
44
- "@microsoft/powerbi-modeling-mcp-linux-x64": "0.5.0-beta.10",
45
- "@microsoft/powerbi-modeling-mcp-win32-x64": "0.5.0-beta.10"
41
+ "@microsoft/powerbi-modeling-mcp-win32-x64": "0.5.0-beta.11",
42
+ "@microsoft/powerbi-modeling-mcp-linux-x64": "0.5.0-beta.11",
43
+ "@microsoft/powerbi-modeling-mcp-darwin-arm64": "0.5.0-beta.11",
44
+ "@microsoft/powerbi-modeling-mcp-linux-arm64": "0.5.0-beta.11",
45
+ "@microsoft/powerbi-modeling-mcp-win32-arm64": "0.5.0-beta.11"
46
46
  },
47
47
  "mcpName": "com.microsoft/powerbi-modeling-mcp"
48
48
  }