@snokam/mcp-api 0.196.0 → 0.197.0

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.196.0",
3
+ "version": "0.197.0",
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": {
@@ -1773,6 +1773,46 @@
1773
1773
  ]
1774
1774
  }
1775
1775
  },
1776
+ "/v1.0/protected/systems-config": {
1777
+ "get": {
1778
+ "tags": [
1779
+ "EmployeeSystems"
1780
+ ],
1781
+ "summary": "List the system registry with per-tenant configuration",
1782
+ "description": "Which Enterprise App (service principal) backs each registered system, and the optional default role. Unconfigured systems have servicePrincipalId: null.",
1783
+ "operationId": "GetEmployeeSystemsConfig",
1784
+ "responses": {
1785
+ "200": {
1786
+ "description": "Payload of Array of EmployeeSystemConfig",
1787
+ "content": {
1788
+ "application/json": {
1789
+ "schema": {
1790
+ "type": "array",
1791
+ "items": {
1792
+ "$ref": "#/components/schemas/employeeSystemConfig"
1793
+ }
1794
+ }
1795
+ }
1796
+ },
1797
+ "x-ms-summary": "Success"
1798
+ },
1799
+ "401": {
1800
+ "description": "No description",
1801
+ "x-ms-summary": "Unauthorized"
1802
+ }
1803
+ },
1804
+ "security": [
1805
+ {
1806
+ "Implicit": [
1807
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1808
+ ]
1809
+ },
1810
+ {
1811
+ "ApiKey": []
1812
+ }
1813
+ ]
1814
+ }
1815
+ },
1776
1816
  "/v1.0/protected/systems/{upn}": {
1777
1817
  "get": {
1778
1818
  "tags": [
@@ -2778,6 +2818,18 @@
2778
2818
  "items": {
2779
2819
  "$ref": "#/components/schemas/systemRoleOption"
2780
2820
  }
2821
+ },
2822
+ "manageable": {
2823
+ "type": "boolean"
2824
+ },
2825
+ "inheritedVia": {
2826
+ "type": "string"
2827
+ },
2828
+ "provisioningStatus": {
2829
+ "type": "string"
2830
+ },
2831
+ "provisioningError": {
2832
+ "type": "string"
2781
2833
  }
2782
2834
  }
2783
2835
  },
@@ -2795,6 +2847,26 @@
2795
2847
  }
2796
2848
  }
2797
2849
  },
2850
+ "employeeSystemConfig": {
2851
+ "type": "object",
2852
+ "properties": {
2853
+ "key": {
2854
+ "type": "string"
2855
+ },
2856
+ "label": {
2857
+ "type": "string"
2858
+ },
2859
+ "kind": {
2860
+ "type": "string"
2861
+ },
2862
+ "servicePrincipalId": {
2863
+ "type": "string"
2864
+ },
2865
+ "defaultRoleId": {
2866
+ "type": "string"
2867
+ }
2868
+ }
2869
+ },
2798
2870
  "feedback": {
2799
2871
  "type": "object",
2800
2872
  "properties": {