@microsoft/powerbi-modeling-mcp-linux-x64 0.5.0-beta.11 → 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 CHANGED
@@ -2,6 +2,30 @@
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
+
11
+ ## [0.5.0-beta.12] - 2026-07-29 - Pre-release
12
+
13
+ ### Features
14
+
15
+ - *(table-operations)* Add FieldParameter to table tool
16
+ - Add per-request ResultMode to dax_query_operations Execute (Resource default, Inline opt-in); remove server-level DaxQueryConfiguration.ResultMode and DaxResultMode.Both
17
+ - Omit empty {} JSON envelopes on success for certain tool calls; emit warnings as a trailing block
18
+ - Remove HTTP mode
19
+ - Annotate tools with title, read-only and destructive hints
20
+ - Remove PBI_MODELING_MCP_ACCESS_TOKEN env var authentication
21
+ - Removed databaseName parameter from database_operations tool call payloads. ExportTMDL / ExportTMSL now export the connection-bound database. Update resolves the target name from update name or the active connection.
22
+
23
+ ### Fixes
24
+
25
+ - Allow repairing broken calculated columns and calculated table partitions in error states
26
+ - Allow single-partition table source updates
27
+ - Allow updating single-partition table sources
28
+
5
29
  ## [0.5.0-beta.11] - 2026-06-25 - Pre-release
6
30
 
7
31
  ### 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('All args:')
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.11",
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",