@umbraco-cms/mcp-dev 17.4.2 → 17.5.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.
@@ -14830,6 +14830,9 @@ export interface GetServerConfigurationOutput {
14830
14830
  versionCheckPeriod: number;
14831
14831
  allowLocalLogin: boolean;
14832
14832
  umbracoCssPath: string;
14833
+ signalR: {
14834
+ skipNegotiation: boolean;
14835
+ };
14833
14836
  }
14834
14837
 
14835
14838
  export interface GetServerInformationInput {}
@@ -15550,6 +15553,12 @@ export interface UploadUserCurrentAvatarInput {
15550
15553
  };
15551
15554
  }
15552
15555
 
15556
+ export interface DeleteUserCurrentAvatarInput {}
15557
+
15558
+ export interface UpdateUserCurrentProfileInput {
15559
+ languageIsoCode: string;
15560
+ }
15561
+
15553
15562
  export interface GetUserInput {
15554
15563
  /**
15555
15564
  * Pagination cursor from a previous response's nextCursor field. Omit for the first page.
@@ -16603,6 +16612,8 @@ export interface CmsTools {
16603
16612
  "get-user-current-permissions-document": { input: GetUserCurrentPermissionsDocumentInput; output: GetUserCurrentPermissionsDocumentOutput };
16604
16613
  "get-user-current-permissions-media": { input: GetUserCurrentPermissionsMediaInput; output: GetUserCurrentPermissionsMediaOutput };
16605
16614
  "upload-user-current-avatar": { input: UploadUserCurrentAvatarInput; output: unknown };
16615
+ "delete-user-current-avatar": { input: DeleteUserCurrentAvatarInput; output: unknown };
16616
+ "update-user-current-profile": { input: UpdateUserCurrentProfileInput; output: unknown };
16606
16617
  "get-user": { input: GetUserInput; output: GetUserOutput };
16607
16618
  "get-user-by-id": { input: GetUserByIdInput; output: GetUserByIdOutput };
16608
16619
  "find-user": { input: FindUserInput; output: FindUserOutput };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-cms/mcp-dev",
3
- "version": "17.4.2",
3
+ "version": "17.5.1",
4
4
  "type": "module",
5
5
  "description": "A model context protocol (MCP) server for Umbraco CMS",
6
6
  "main": "dist/index.js",
@@ -70,7 +70,6 @@
70
70
  "@types/yargs": "^17.0.33",
71
71
  "@umbraco-cms/mcp-hosted": "^17.0.0-beta.28",
72
72
  "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.28",
73
- "axios": "^1.8.4",
74
73
  "dotenv": "^16.5.0",
75
74
  "form-data": "^4.0.4",
76
75
  "mime-types": "^3.0.1",