@umbraco-cms/mcp-dev 18.0.0-rc.1 → 18.0.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.
@@ -250,6 +250,20 @@ export interface GetDataTypeSchemaOutput {
250
250
  jsonSchema?: unknown;
251
251
  }
252
252
 
253
+ export interface GetDataTypeSchemasInput {
254
+ id?: string[];
255
+ }
256
+
257
+ export interface GetDataTypeSchemasOutput {
258
+ total: number;
259
+ items: {
260
+ id: string;
261
+ valueTypeName?: string | null;
262
+ jsonSchema?: unknown;
263
+ error?: string | null;
264
+ }[];
265
+ }
266
+
253
267
  export interface GetDataTypeRootInput {
254
268
  foldersOnly?: boolean;
255
269
  /**
@@ -13954,6 +13968,14 @@ export interface GetRecycleBinMediaOriginalParentOutput {
13954
13968
  id: string;
13955
13969
  }
13956
13970
 
13971
+ export interface GetMediaTypeSchemaInput {
13972
+ id: string;
13973
+ }
13974
+
13975
+ export interface GetMediaTypeSchemaOutput {
13976
+ schema: unknown;
13977
+ }
13978
+
13957
13979
  export interface GetMediaTypeFolderInput {
13958
13980
  id: string;
13959
13981
  }
@@ -14947,6 +14969,14 @@ export interface GetMemberByIdReferencedDescendantsOutput {
14947
14969
  nextCursor?: string | null;
14948
14970
  }
14949
14971
 
14972
+ export interface GetMemberTypeSchemaInput {
14973
+ id: string;
14974
+ }
14975
+
14976
+ export interface GetMemberTypeSchemaOutput {
14977
+ schema: unknown;
14978
+ }
14979
+
14950
14980
  export interface FindMemberInput {
14951
14981
  memberTypeId?: string;
14952
14982
  memberGroupName?: string;
@@ -17704,6 +17734,7 @@ export interface CmsTools {
17704
17734
  "get-data-type-batch": { input: GetDataTypeBatchInput; output: GetDataTypeBatchOutput };
17705
17735
  "get-data-type-configuration": { input: GetDataTypeConfigurationInput; output: GetDataTypeConfigurationOutput };
17706
17736
  "get-data-type-schema": { input: GetDataTypeSchemaInput; output: GetDataTypeSchemaOutput };
17737
+ "get-data-type-schemas": { input: GetDataTypeSchemasInput; output: GetDataTypeSchemasOutput };
17707
17738
  "get-data-type-root": { input: GetDataTypeRootInput; output: GetDataTypeRootOutput };
17708
17739
  "get-data-type-children": { input: GetDataTypeChildrenInput; output: GetDataTypeChildrenOutput };
17709
17740
  "get-data-type-siblings": { input: GetDataTypeSiblingsInput; output: GetDataTypeSiblingsOutput };
@@ -17932,6 +17963,7 @@ export interface CmsTools {
17932
17963
  "get-collection-media": { input: GetCollectionMediaInput; output: GetCollectionMediaOutput };
17933
17964
  "get-recycle-bin-media-referenced-by": { input: GetRecycleBinMediaReferencedByInput; output: GetRecycleBinMediaReferencedByOutput };
17934
17965
  "get-recycle-bin-media-original-parent": { input: GetRecycleBinMediaOriginalParentInput; output: GetRecycleBinMediaOriginalParentOutput };
17966
+ "get-media-type-schema": { input: GetMediaTypeSchemaInput; output: GetMediaTypeSchemaOutput };
17935
17967
  "get-media-type-folder": { input: GetMediaTypeFolderInput; output: GetMediaTypeFolderOutput };
17936
17968
  "create-media-type-folder": { input: CreateMediaTypeFolderInput; output: CreateMediaTypeFolderOutput };
17937
17969
  "delete-media-type-folder": { input: DeleteMediaTypeFolderInput; output: unknown };
@@ -17967,6 +17999,7 @@ export interface CmsTools {
17967
17999
  "get-member-are-referenced": { input: GetMemberAreReferencedInput; output: GetMemberAreReferencedOutput };
17968
18000
  "get-member-by-id-referenced-by": { input: GetMemberByIdReferencedByInput; output: GetMemberByIdReferencedByOutput };
17969
18001
  "get-member-by-id-referenced-descendants": { input: GetMemberByIdReferencedDescendantsInput; output: GetMemberByIdReferencedDescendantsOutput };
18002
+ "get-member-type-schema": { input: GetMemberTypeSchemaInput; output: GetMemberTypeSchemaOutput };
17970
18003
  "find-member": { input: FindMemberInput; output: FindMemberOutput };
17971
18004
  "get-item-member-search": { input: GetItemMemberSearchInput; output: GetItemMemberSearchOutput };
17972
18005
  "get-member-ancestors-batch": { input: GetMemberAncestorsBatchInput; output: GetMemberAncestorsBatchOutput };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-cms/mcp-dev",
3
- "version": "18.0.0-rc.1",
3
+ "version": "18.0.0",
4
4
  "type": "module",
5
5
  "description": "A model context protocol (MCP) server for Umbraco CMS",
6
6
  "main": "dist/index.js",
@@ -68,8 +68,8 @@
68
68
  "@modelcontextprotocol/sdk": "^1.28.0",
69
69
  "@types/uuid": "^10.0.0",
70
70
  "@types/yargs": "^17.0.33",
71
- "@umbraco-cms/mcp-hosted": "^17.0.0-beta.28",
72
- "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.29",
71
+ "@umbraco-cms/mcp-hosted": "^1.0.0-beta.31",
72
+ "@umbraco-cms/mcp-server-sdk": "^1.0.0-beta.31",
73
73
  "axios": "^1.8.4",
74
74
  "dotenv": "^16.5.0",
75
75
  "form-data": "^4.0.4",