@contentful/mcp-tools 0.4.4 → 0.7.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/dist/index.d.ts +134 -49
- package/dist/index.js +1056 -533
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -57,6 +57,12 @@ interface ContentfulConfig {
|
|
|
57
57
|
appId?: string;
|
|
58
58
|
/** Version number to use for MCP tool calls */
|
|
59
59
|
mcpVersion: string;
|
|
60
|
+
/** Contentful CDA token for exporting only published content */
|
|
61
|
+
deliveryToken?: string;
|
|
62
|
+
/** Contentful Delivery API host (used with deliveryToken for custom CDA endpoints) */
|
|
63
|
+
hostDelivery?: string;
|
|
64
|
+
/** Environment IDs that are protected from write/delete operations */
|
|
65
|
+
protectedEnvironments?: string[];
|
|
60
66
|
}
|
|
61
67
|
|
|
62
68
|
/**
|
|
@@ -392,6 +398,8 @@ declare class ContentfulMcpTools {
|
|
|
392
398
|
environmentId: zod.ZodString;
|
|
393
399
|
} & {
|
|
394
400
|
aiActionId: zod.ZodString;
|
|
401
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
402
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
395
403
|
};
|
|
396
404
|
annotations: {
|
|
397
405
|
readOnlyHint: boolean;
|
|
@@ -403,6 +411,8 @@ declare class ContentfulMcpTools {
|
|
|
403
411
|
spaceId: string;
|
|
404
412
|
environmentId: string;
|
|
405
413
|
aiActionId: string;
|
|
414
|
+
confirmToken?: string | undefined;
|
|
415
|
+
confirm?: boolean | undefined;
|
|
406
416
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
407
417
|
};
|
|
408
418
|
getAiAction: {
|
|
@@ -645,12 +655,12 @@ declare class ContentfulMcpTools {
|
|
|
645
655
|
contentType: zod.ZodString;
|
|
646
656
|
upload: zod.ZodOptional<zod.ZodString>;
|
|
647
657
|
}, "strip", zod.ZodTypeAny, {
|
|
648
|
-
fileName: string;
|
|
649
658
|
contentType: string;
|
|
659
|
+
fileName: string;
|
|
650
660
|
upload?: string | undefined;
|
|
651
661
|
}, {
|
|
652
|
-
fileName: string;
|
|
653
662
|
contentType: string;
|
|
663
|
+
fileName: string;
|
|
654
664
|
upload?: string | undefined;
|
|
655
665
|
}>;
|
|
656
666
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -752,8 +762,8 @@ declare class ContentfulMcpTools {
|
|
|
752
762
|
spaceId: string;
|
|
753
763
|
environmentId: string;
|
|
754
764
|
file: {
|
|
755
|
-
fileName: string;
|
|
756
765
|
contentType: string;
|
|
766
|
+
fileName: string;
|
|
757
767
|
upload?: string | undefined;
|
|
758
768
|
};
|
|
759
769
|
metadata?: {
|
|
@@ -798,12 +808,12 @@ declare class ContentfulMcpTools {
|
|
|
798
808
|
tool: (params: {
|
|
799
809
|
spaceId: string;
|
|
800
810
|
environmentId: string;
|
|
811
|
+
locale?: string | undefined;
|
|
801
812
|
skip?: number | undefined;
|
|
802
813
|
limit?: number | undefined;
|
|
803
814
|
select?: string | undefined;
|
|
804
815
|
include?: number | undefined;
|
|
805
816
|
order?: string | undefined;
|
|
806
|
-
locale?: string | undefined;
|
|
807
817
|
links_to_entry?: string | undefined;
|
|
808
818
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
809
819
|
};
|
|
@@ -959,6 +969,8 @@ declare class ContentfulMcpTools {
|
|
|
959
969
|
environmentId: zod.ZodString;
|
|
960
970
|
} & {
|
|
961
971
|
assetId: zod.ZodString;
|
|
972
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
973
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
962
974
|
};
|
|
963
975
|
annotations: {
|
|
964
976
|
readOnlyHint: boolean;
|
|
@@ -970,6 +982,8 @@ declare class ContentfulMcpTools {
|
|
|
970
982
|
spaceId: string;
|
|
971
983
|
environmentId: string;
|
|
972
984
|
assetId: string;
|
|
985
|
+
confirmToken?: string | undefined;
|
|
986
|
+
confirm?: boolean | undefined;
|
|
973
987
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
974
988
|
};
|
|
975
989
|
publishAsset: {
|
|
@@ -3949,6 +3963,8 @@ declare class ContentfulMcpTools {
|
|
|
3949
3963
|
environmentId: zod.ZodString;
|
|
3950
3964
|
} & {
|
|
3951
3965
|
contentTypeId: zod.ZodString;
|
|
3966
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
3967
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
3952
3968
|
};
|
|
3953
3969
|
annotations: {
|
|
3954
3970
|
readOnlyHint: boolean;
|
|
@@ -3960,6 +3976,8 @@ declare class ContentfulMcpTools {
|
|
|
3960
3976
|
spaceId: string;
|
|
3961
3977
|
environmentId: string;
|
|
3962
3978
|
contentTypeId: string;
|
|
3979
|
+
confirmToken?: string | undefined;
|
|
3980
|
+
confirm?: boolean | undefined;
|
|
3963
3981
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
3964
3982
|
};
|
|
3965
3983
|
publishContentType: {
|
|
@@ -4004,6 +4022,81 @@ declare class ContentfulMcpTools {
|
|
|
4004
4022
|
contentTypeId: string;
|
|
4005
4023
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4006
4024
|
};
|
|
4025
|
+
omitContentTypeField: {
|
|
4026
|
+
title: string;
|
|
4027
|
+
description: string;
|
|
4028
|
+
inputParams: {
|
|
4029
|
+
spaceId: zod.ZodString;
|
|
4030
|
+
environmentId: zod.ZodString;
|
|
4031
|
+
} & {
|
|
4032
|
+
contentTypeId: zod.ZodString;
|
|
4033
|
+
fieldId: zod.ZodString;
|
|
4034
|
+
omitted: zod.ZodDefault<zod.ZodBoolean>;
|
|
4035
|
+
};
|
|
4036
|
+
annotations: {
|
|
4037
|
+
readOnlyHint: boolean;
|
|
4038
|
+
destructiveHint: boolean;
|
|
4039
|
+
idempotentHint: boolean;
|
|
4040
|
+
openWorldHint: boolean;
|
|
4041
|
+
};
|
|
4042
|
+
tool: (params: {
|
|
4043
|
+
spaceId: string;
|
|
4044
|
+
environmentId: string;
|
|
4045
|
+
contentTypeId: string;
|
|
4046
|
+
omitted: boolean;
|
|
4047
|
+
fieldId: string;
|
|
4048
|
+
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4049
|
+
};
|
|
4050
|
+
deleteContentTypeField: {
|
|
4051
|
+
title: string;
|
|
4052
|
+
description: string;
|
|
4053
|
+
inputParams: {
|
|
4054
|
+
spaceId: zod.ZodString;
|
|
4055
|
+
environmentId: zod.ZodString;
|
|
4056
|
+
} & {
|
|
4057
|
+
contentTypeId: zod.ZodString;
|
|
4058
|
+
fieldId: zod.ZodString;
|
|
4059
|
+
};
|
|
4060
|
+
annotations: {
|
|
4061
|
+
readOnlyHint: boolean;
|
|
4062
|
+
destructiveHint: boolean;
|
|
4063
|
+
idempotentHint: boolean;
|
|
4064
|
+
openWorldHint: boolean;
|
|
4065
|
+
};
|
|
4066
|
+
tool: (params: {
|
|
4067
|
+
spaceId: string;
|
|
4068
|
+
environmentId: string;
|
|
4069
|
+
contentTypeId: string;
|
|
4070
|
+
fieldId: string;
|
|
4071
|
+
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4072
|
+
};
|
|
4073
|
+
disableContentTypeField: {
|
|
4074
|
+
title: string;
|
|
4075
|
+
description: string;
|
|
4076
|
+
inputParams: {
|
|
4077
|
+
spaceId: zod.ZodString;
|
|
4078
|
+
environmentId: zod.ZodString;
|
|
4079
|
+
} & {
|
|
4080
|
+
contentTypeId: zod.ZodString;
|
|
4081
|
+
fieldId: zod.ZodString;
|
|
4082
|
+
disabled: zod.ZodOptional<zod.ZodBoolean>;
|
|
4083
|
+
omitted: zod.ZodOptional<zod.ZodBoolean>;
|
|
4084
|
+
};
|
|
4085
|
+
annotations: {
|
|
4086
|
+
readOnlyHint: boolean;
|
|
4087
|
+
destructiveHint: boolean;
|
|
4088
|
+
idempotentHint: boolean;
|
|
4089
|
+
openWorldHint: boolean;
|
|
4090
|
+
};
|
|
4091
|
+
tool: (params: {
|
|
4092
|
+
spaceId: string;
|
|
4093
|
+
environmentId: string;
|
|
4094
|
+
contentTypeId: string;
|
|
4095
|
+
fieldId: string;
|
|
4096
|
+
disabled?: boolean | undefined;
|
|
4097
|
+
omitted?: boolean | undefined;
|
|
4098
|
+
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4099
|
+
};
|
|
4007
4100
|
};
|
|
4008
4101
|
/**
|
|
4009
4102
|
* Get context tools
|
|
@@ -4885,6 +4978,8 @@ declare class ContentfulMcpTools {
|
|
|
4885
4978
|
environmentId: zod.ZodString;
|
|
4886
4979
|
} & {
|
|
4887
4980
|
entryId: zod.ZodString;
|
|
4981
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
4982
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
4888
4983
|
};
|
|
4889
4984
|
annotations: {
|
|
4890
4985
|
readOnlyHint: boolean;
|
|
@@ -4896,6 +4991,8 @@ declare class ContentfulMcpTools {
|
|
|
4896
4991
|
spaceId: string;
|
|
4897
4992
|
environmentId: string;
|
|
4898
4993
|
entryId: string;
|
|
4994
|
+
confirmToken?: string | undefined;
|
|
4995
|
+
confirm?: boolean | undefined;
|
|
4899
4996
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4900
4997
|
};
|
|
4901
4998
|
publishEntry: {
|
|
@@ -4905,7 +5002,7 @@ declare class ContentfulMcpTools {
|
|
|
4905
5002
|
spaceId: zod.ZodString;
|
|
4906
5003
|
environmentId: zod.ZodString;
|
|
4907
5004
|
} & {
|
|
4908
|
-
entryId: zod.
|
|
5005
|
+
entryId: zod.ZodArray<zod.ZodString, "many">;
|
|
4909
5006
|
};
|
|
4910
5007
|
annotations: {
|
|
4911
5008
|
readOnlyHint: boolean;
|
|
@@ -4916,7 +5013,7 @@ declare class ContentfulMcpTools {
|
|
|
4916
5013
|
tool: (params: {
|
|
4917
5014
|
spaceId: string;
|
|
4918
5015
|
environmentId: string;
|
|
4919
|
-
entryId: string
|
|
5016
|
+
entryId: string[];
|
|
4920
5017
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4921
5018
|
};
|
|
4922
5019
|
unpublishEntry: {
|
|
@@ -4926,7 +5023,7 @@ declare class ContentfulMcpTools {
|
|
|
4926
5023
|
spaceId: zod.ZodString;
|
|
4927
5024
|
environmentId: zod.ZodString;
|
|
4928
5025
|
} & {
|
|
4929
|
-
entryId: zod.
|
|
5026
|
+
entryId: zod.ZodArray<zod.ZodString, "many">;
|
|
4930
5027
|
};
|
|
4931
5028
|
annotations: {
|
|
4932
5029
|
readOnlyHint: boolean;
|
|
@@ -4937,7 +5034,7 @@ declare class ContentfulMcpTools {
|
|
|
4937
5034
|
tool: (params: {
|
|
4938
5035
|
spaceId: string;
|
|
4939
5036
|
environmentId: string;
|
|
4940
|
-
entryId: string
|
|
5037
|
+
entryId: string[];
|
|
4941
5038
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4942
5039
|
};
|
|
4943
5040
|
archiveEntry: {
|
|
@@ -4947,7 +5044,7 @@ declare class ContentfulMcpTools {
|
|
|
4947
5044
|
spaceId: zod.ZodString;
|
|
4948
5045
|
environmentId: zod.ZodString;
|
|
4949
5046
|
} & {
|
|
4950
|
-
entryId: zod.
|
|
5047
|
+
entryId: zod.ZodArray<zod.ZodString, "many">;
|
|
4951
5048
|
};
|
|
4952
5049
|
annotations: {
|
|
4953
5050
|
readOnlyHint: boolean;
|
|
@@ -4958,7 +5055,7 @@ declare class ContentfulMcpTools {
|
|
|
4958
5055
|
tool: (params: {
|
|
4959
5056
|
spaceId: string;
|
|
4960
5057
|
environmentId: string;
|
|
4961
|
-
entryId: string
|
|
5058
|
+
entryId: string[];
|
|
4962
5059
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4963
5060
|
};
|
|
4964
5061
|
unarchiveEntry: {
|
|
@@ -4968,7 +5065,7 @@ declare class ContentfulMcpTools {
|
|
|
4968
5065
|
spaceId: zod.ZodString;
|
|
4969
5066
|
environmentId: zod.ZodString;
|
|
4970
5067
|
} & {
|
|
4971
|
-
entryId: zod.
|
|
5068
|
+
entryId: zod.ZodArray<zod.ZodString, "many">;
|
|
4972
5069
|
};
|
|
4973
5070
|
annotations: {
|
|
4974
5071
|
readOnlyHint: boolean;
|
|
@@ -4979,7 +5076,7 @@ declare class ContentfulMcpTools {
|
|
|
4979
5076
|
tool: (params: {
|
|
4980
5077
|
spaceId: string;
|
|
4981
5078
|
environmentId: string;
|
|
4982
|
-
entryId: string
|
|
5079
|
+
entryId: string[];
|
|
4983
5080
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
4984
5081
|
};
|
|
4985
5082
|
};
|
|
@@ -5042,6 +5139,8 @@ declare class ContentfulMcpTools {
|
|
|
5042
5139
|
spaceId: zod.ZodString;
|
|
5043
5140
|
} & {
|
|
5044
5141
|
environmentId: zod.ZodString;
|
|
5142
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
5143
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
5045
5144
|
};
|
|
5046
5145
|
annotations: {
|
|
5047
5146
|
readOnlyHint: boolean;
|
|
@@ -5052,6 +5151,8 @@ declare class ContentfulMcpTools {
|
|
|
5052
5151
|
tool: (params: {
|
|
5053
5152
|
spaceId: string;
|
|
5054
5153
|
environmentId: string;
|
|
5154
|
+
confirmToken?: string | undefined;
|
|
5155
|
+
confirm?: boolean | undefined;
|
|
5055
5156
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
5056
5157
|
};
|
|
5057
5158
|
};
|
|
@@ -5197,6 +5298,8 @@ declare class ContentfulMcpTools {
|
|
|
5197
5298
|
environmentId: zod.ZodString;
|
|
5198
5299
|
} & {
|
|
5199
5300
|
localeId: zod.ZodString;
|
|
5301
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
5302
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
5200
5303
|
};
|
|
5201
5304
|
annotations: {
|
|
5202
5305
|
readOnlyHint: boolean;
|
|
@@ -5208,6 +5311,8 @@ declare class ContentfulMcpTools {
|
|
|
5208
5311
|
spaceId: string;
|
|
5209
5312
|
environmentId: string;
|
|
5210
5313
|
localeId: string;
|
|
5314
|
+
confirmToken?: string | undefined;
|
|
5315
|
+
confirm?: boolean | undefined;
|
|
5211
5316
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
5212
5317
|
};
|
|
5213
5318
|
};
|
|
@@ -5618,7 +5723,8 @@ declare class ContentfulMcpTools {
|
|
|
5618
5723
|
inputParams: {
|
|
5619
5724
|
organizationId: zod.ZodString;
|
|
5620
5725
|
conceptId: zod.ZodString;
|
|
5621
|
-
|
|
5726
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
5727
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
5622
5728
|
};
|
|
5623
5729
|
annotations: {
|
|
5624
5730
|
readOnlyHint: boolean;
|
|
@@ -5627,9 +5733,10 @@ declare class ContentfulMcpTools {
|
|
|
5627
5733
|
openWorldHint: boolean;
|
|
5628
5734
|
};
|
|
5629
5735
|
tool: (params: {
|
|
5630
|
-
version: number;
|
|
5631
5736
|
organizationId: string;
|
|
5632
5737
|
conceptId: string;
|
|
5738
|
+
confirmToken?: string | undefined;
|
|
5739
|
+
confirm?: boolean | undefined;
|
|
5633
5740
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
5634
5741
|
};
|
|
5635
5742
|
createConceptScheme: {
|
|
@@ -5846,7 +5953,8 @@ declare class ContentfulMcpTools {
|
|
|
5846
5953
|
inputParams: {
|
|
5847
5954
|
organizationId: zod.ZodString;
|
|
5848
5955
|
conceptSchemeId: zod.ZodString;
|
|
5849
|
-
|
|
5956
|
+
confirm: zod.ZodOptional<zod.ZodBoolean>;
|
|
5957
|
+
confirmToken: zod.ZodOptional<zod.ZodString>;
|
|
5850
5958
|
};
|
|
5851
5959
|
annotations: {
|
|
5852
5960
|
readOnlyHint: boolean;
|
|
@@ -5855,9 +5963,10 @@ declare class ContentfulMcpTools {
|
|
|
5855
5963
|
openWorldHint: boolean;
|
|
5856
5964
|
};
|
|
5857
5965
|
tool: (params: {
|
|
5858
|
-
version: number;
|
|
5859
5966
|
organizationId: string;
|
|
5860
5967
|
conceptSchemeId: string;
|
|
5968
|
+
confirmToken?: string | undefined;
|
|
5969
|
+
confirm?: boolean | undefined;
|
|
5861
5970
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
5862
5971
|
};
|
|
5863
5972
|
};
|
|
@@ -5982,11 +6091,11 @@ declare class ContentfulMcpTools {
|
|
|
5982
6091
|
} | undefined;
|
|
5983
6092
|
downloadAssets?: boolean | undefined;
|
|
5984
6093
|
maxAllowedLimit?: number | undefined;
|
|
6094
|
+
errorLogFile?: string | undefined;
|
|
6095
|
+
useVerboseRenderer?: boolean | undefined;
|
|
5985
6096
|
deliveryToken?: string | undefined;
|
|
5986
6097
|
hostDelivery?: string | undefined;
|
|
5987
6098
|
rawProxy?: boolean | undefined;
|
|
5988
|
-
errorLogFile?: string | undefined;
|
|
5989
|
-
useVerboseRenderer?: boolean | undefined;
|
|
5990
6099
|
}, {
|
|
5991
6100
|
config?: string | undefined;
|
|
5992
6101
|
spaceId?: string | undefined;
|
|
@@ -6025,11 +6134,11 @@ declare class ContentfulMcpTools {
|
|
|
6025
6134
|
} | undefined;
|
|
6026
6135
|
downloadAssets?: boolean | undefined;
|
|
6027
6136
|
maxAllowedLimit?: number | undefined;
|
|
6137
|
+
errorLogFile?: string | undefined;
|
|
6138
|
+
useVerboseRenderer?: boolean | undefined;
|
|
6028
6139
|
deliveryToken?: string | undefined;
|
|
6029
6140
|
hostDelivery?: string | undefined;
|
|
6030
6141
|
rawProxy?: boolean | undefined;
|
|
6031
|
-
errorLogFile?: string | undefined;
|
|
6032
|
-
useVerboseRenderer?: boolean | undefined;
|
|
6033
6142
|
}>>;
|
|
6034
6143
|
import: zod.ZodOptional<zod.ZodObject<{
|
|
6035
6144
|
spaceId: zod.ZodOptional<zod.ZodString>;
|
|
@@ -6066,9 +6175,9 @@ declare class ContentfulMcpTools {
|
|
|
6066
6175
|
timeout?: number | undefined;
|
|
6067
6176
|
contentFile?: string | undefined;
|
|
6068
6177
|
skipContentModel?: boolean | undefined;
|
|
6069
|
-
rawProxy?: boolean | undefined;
|
|
6070
6178
|
errorLogFile?: string | undefined;
|
|
6071
6179
|
useVerboseRenderer?: boolean | undefined;
|
|
6180
|
+
rawProxy?: boolean | undefined;
|
|
6072
6181
|
contentModelOnly?: boolean | undefined;
|
|
6073
6182
|
skipLocales?: boolean | undefined;
|
|
6074
6183
|
skipContentUpdates?: boolean | undefined;
|
|
@@ -6089,9 +6198,9 @@ declare class ContentfulMcpTools {
|
|
|
6089
6198
|
timeout?: number | undefined;
|
|
6090
6199
|
contentFile?: string | undefined;
|
|
6091
6200
|
skipContentModel?: boolean | undefined;
|
|
6092
|
-
rawProxy?: boolean | undefined;
|
|
6093
6201
|
errorLogFile?: string | undefined;
|
|
6094
6202
|
useVerboseRenderer?: boolean | undefined;
|
|
6203
|
+
rawProxy?: boolean | undefined;
|
|
6095
6204
|
contentModelOnly?: boolean | undefined;
|
|
6096
6205
|
skipLocales?: boolean | undefined;
|
|
6097
6206
|
skipContentUpdates?: boolean | undefined;
|
|
@@ -6148,11 +6257,11 @@ declare class ContentfulMcpTools {
|
|
|
6148
6257
|
} | undefined;
|
|
6149
6258
|
downloadAssets?: boolean | undefined;
|
|
6150
6259
|
maxAllowedLimit?: number | undefined;
|
|
6260
|
+
errorLogFile?: string | undefined;
|
|
6261
|
+
useVerboseRenderer?: boolean | undefined;
|
|
6151
6262
|
deliveryToken?: string | undefined;
|
|
6152
6263
|
hostDelivery?: string | undefined;
|
|
6153
6264
|
rawProxy?: boolean | undefined;
|
|
6154
|
-
errorLogFile?: string | undefined;
|
|
6155
|
-
useVerboseRenderer?: boolean | undefined;
|
|
6156
6265
|
} | undefined;
|
|
6157
6266
|
import?: {
|
|
6158
6267
|
config?: string | undefined;
|
|
@@ -6166,9 +6275,9 @@ declare class ContentfulMcpTools {
|
|
|
6166
6275
|
timeout?: number | undefined;
|
|
6167
6276
|
contentFile?: string | undefined;
|
|
6168
6277
|
skipContentModel?: boolean | undefined;
|
|
6169
|
-
rawProxy?: boolean | undefined;
|
|
6170
6278
|
errorLogFile?: string | undefined;
|
|
6171
6279
|
useVerboseRenderer?: boolean | undefined;
|
|
6280
|
+
rawProxy?: boolean | undefined;
|
|
6172
6281
|
contentModelOnly?: boolean | undefined;
|
|
6173
6282
|
skipLocales?: boolean | undefined;
|
|
6174
6283
|
skipContentUpdates?: boolean | undefined;
|
|
@@ -6246,15 +6355,8 @@ declare class ContentfulMcpTools {
|
|
|
6246
6355
|
}>>;
|
|
6247
6356
|
downloadAssets: zod.ZodDefault<zod.ZodOptional<zod.ZodBoolean>>;
|
|
6248
6357
|
maxAllowedLimit: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
|
|
6249
|
-
deliveryToken: zod.ZodOptional<zod.ZodString>;
|
|
6250
|
-
host: zod.ZodOptional<zod.ZodString>;
|
|
6251
|
-
hostDelivery: zod.ZodOptional<zod.ZodString>;
|
|
6252
|
-
proxy: zod.ZodOptional<zod.ZodString>;
|
|
6253
|
-
rawProxy: zod.ZodOptional<zod.ZodBoolean>;
|
|
6254
|
-
headers: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodString>>;
|
|
6255
6358
|
errorLogFile: zod.ZodOptional<zod.ZodString>;
|
|
6256
6359
|
useVerboseRenderer: zod.ZodOptional<zod.ZodBoolean>;
|
|
6257
|
-
config: zod.ZodOptional<zod.ZodString>;
|
|
6258
6360
|
};
|
|
6259
6361
|
annotations: {
|
|
6260
6362
|
readOnlyHint: boolean;
|
|
@@ -6276,10 +6378,6 @@ declare class ContentfulMcpTools {
|
|
|
6276
6378
|
contentOnly: boolean;
|
|
6277
6379
|
downloadAssets: boolean;
|
|
6278
6380
|
maxAllowedLimit: number;
|
|
6279
|
-
config?: string | undefined;
|
|
6280
|
-
host?: string | undefined;
|
|
6281
|
-
proxy?: string | undefined;
|
|
6282
|
-
headers?: Record<string, string> | undefined;
|
|
6283
6381
|
exportDir?: string | undefined;
|
|
6284
6382
|
contentFile?: string | undefined;
|
|
6285
6383
|
queryEntries?: {
|
|
@@ -6298,9 +6396,6 @@ declare class ContentfulMcpTools {
|
|
|
6298
6396
|
order?: string | undefined;
|
|
6299
6397
|
mimetype_group?: string | undefined;
|
|
6300
6398
|
} | undefined;
|
|
6301
|
-
deliveryToken?: string | undefined;
|
|
6302
|
-
hostDelivery?: string | undefined;
|
|
6303
|
-
rawProxy?: boolean | undefined;
|
|
6304
6399
|
errorLogFile?: string | undefined;
|
|
6305
6400
|
useVerboseRenderer?: boolean | undefined;
|
|
6306
6401
|
}, extra?: _modelcontextprotocol_sdk_shared_protocol_js.RequestHandlerExtra<_modelcontextprotocol_sdk_types_js.ServerRequest, _modelcontextprotocol_sdk_types_js.ServerNotification>) => Promise<ToolResponse>;
|
|
@@ -6324,14 +6419,9 @@ declare class ContentfulMcpTools {
|
|
|
6324
6419
|
assetsDirectory: zod.ZodOptional<zod.ZodString>;
|
|
6325
6420
|
timeout: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
|
|
6326
6421
|
retryLimit: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
|
|
6327
|
-
host: zod.ZodOptional<zod.ZodString>;
|
|
6328
|
-
proxy: zod.ZodOptional<zod.ZodString>;
|
|
6329
|
-
rawProxy: zod.ZodOptional<zod.ZodBoolean>;
|
|
6330
6422
|
rateLimit: zod.ZodDefault<zod.ZodOptional<zod.ZodNumber>>;
|
|
6331
|
-
headers: zod.ZodOptional<zod.ZodRecord<zod.ZodString, zod.ZodAny>>;
|
|
6332
6423
|
errorLogFile: zod.ZodOptional<zod.ZodString>;
|
|
6333
6424
|
useVerboseRenderer: zod.ZodOptional<zod.ZodBoolean>;
|
|
6334
|
-
config: zod.ZodOptional<zod.ZodString>;
|
|
6335
6425
|
};
|
|
6336
6426
|
annotations: {
|
|
6337
6427
|
readOnlyHint: boolean;
|
|
@@ -6352,13 +6442,8 @@ declare class ContentfulMcpTools {
|
|
|
6352
6442
|
uploadAssets: boolean;
|
|
6353
6443
|
skipAssetUpdates: boolean;
|
|
6354
6444
|
rateLimit: number;
|
|
6355
|
-
config?: string | undefined;
|
|
6356
6445
|
content?: Record<string, any> | undefined;
|
|
6357
|
-
host?: string | undefined;
|
|
6358
|
-
proxy?: string | undefined;
|
|
6359
|
-
headers?: Record<string, any> | undefined;
|
|
6360
6446
|
contentFile?: string | undefined;
|
|
6361
|
-
rawProxy?: boolean | undefined;
|
|
6362
6447
|
errorLogFile?: string | undefined;
|
|
6363
6448
|
useVerboseRenderer?: boolean | undefined;
|
|
6364
6449
|
assetsDirectory?: string | undefined;
|