@contentful/mcp-server 1.16.0 → 1.18.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.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -4126,7 +4126,7 @@ init_esm_shims();
|
|
|
4126
4126
|
|
|
4127
4127
|
// src/mcpVersion.ts
|
|
4128
4128
|
init_esm_shims();
|
|
4129
|
-
var MCP_VERSION = "1.
|
|
4129
|
+
var MCP_VERSION = "1.17.0";
|
|
4130
4130
|
|
|
4131
4131
|
// src/getVersion.ts
|
|
4132
4132
|
var getVersion = () => {
|
|
@@ -4149,6 +4149,7 @@ async function registerAllTools(server) {
|
|
|
4149
4149
|
organizationId: env.data.ORGANIZATION_ID,
|
|
4150
4150
|
appId: env.data.APP_ID,
|
|
4151
4151
|
mcpVersion: getVersion(),
|
|
4152
|
+
mcpSource: "local",
|
|
4152
4153
|
deliveryToken: env.data.CONTENTFUL_DELIVERY_TOKEN,
|
|
4153
4154
|
hostDelivery: env.data.CONTENTFUL_DELIVERY_HOST,
|
|
4154
4155
|
protectedEnvironments,
|
|
@@ -4161,6 +4162,7 @@ async function registerAllTools(server) {
|
|
|
4161
4162
|
});
|
|
4162
4163
|
const aiActionTools = tools.getAiActionTools();
|
|
4163
4164
|
const assetTools = tools.getAssetTools();
|
|
4165
|
+
const contentPreviewTools = tools.getContentPreviewTools();
|
|
4164
4166
|
const contentTypeTools = tools.getContentTypeTools();
|
|
4165
4167
|
const contextTools = tools.getContextTools();
|
|
4166
4168
|
const editorInterfaceTools = tools.getEditorInterfaceTools();
|
|
@@ -4175,6 +4177,7 @@ async function registerAllTools(server) {
|
|
|
4175
4177
|
const allToolCollections = [
|
|
4176
4178
|
aiActionTools,
|
|
4177
4179
|
assetTools,
|
|
4180
|
+
contentPreviewTools,
|
|
4178
4181
|
contentTypeTools,
|
|
4179
4182
|
contextTools,
|
|
4180
4183
|
editorInterfaceTools,
|