@snokam/mcp-api 0.193.4 → 0.194.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "0.193.4",
3
+ "version": "0.194.1",
4
4
  "description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1498,6 +1498,14 @@
1498
1498
  "type": "string"
1499
1499
  },
1500
1500
  "x-ms-summary": "Stable system key (e.g. \"salesforce\")"
1501
+ },
1502
+ {
1503
+ "name": "roleId",
1504
+ "in": "query",
1505
+ "schema": {
1506
+ "type": "string"
1507
+ },
1508
+ "x-ms-summary": "App-role id to assign; falls back to the tenant's default role when omitted. Assigning a different role than the current one replaces the assignment."
1501
1509
  }
1502
1510
  ],
1503
1511
  "responses": {
@@ -2320,6 +2328,15 @@
2320
2328
  },
2321
2329
  "notImplemented": {
2322
2330
  "type": "boolean"
2331
+ },
2332
+ "assignedRoleId": {
2333
+ "type": "string"
2334
+ },
2335
+ "availableRoles": {
2336
+ "type": "array",
2337
+ "items": {
2338
+ "$ref": "#/components/schemas/systemRoleOption"
2339
+ }
2323
2340
  }
2324
2341
  }
2325
2342
  },
@@ -3922,6 +3939,17 @@
3922
3939
  "type": "string"
3923
3940
  }
3924
3941
  }
3942
+ },
3943
+ "systemRoleOption": {
3944
+ "type": "object",
3945
+ "properties": {
3946
+ "id": {
3947
+ "type": "string"
3948
+ },
3949
+ "label": {
3950
+ "type": "string"
3951
+ }
3952
+ }
3925
3953
  }
3926
3954
  },
3927
3955
  "securitySchemes": {