@contentful/mcp-server 1.17.0 → 1.19.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/README.md +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ npm run build
|
|
|
71
71
|
| `CONTENTFUL_HOST` | ❌ No | `api.contentful.com` | Contentful API host |
|
|
72
72
|
| `NODE_ENV` | ❌ No | `production` | Node Environment to run in |
|
|
73
73
|
| `MAX_BULK_SIZE` | ❌ No | `10` | Maximum number of IDs allowed in a single bulk-operation tool call (1–100). Caps publish/unpublish/archive/unarchive on entries and assets. Mitigates accidental mass operations from AI hallucinations. |
|
|
74
|
-
| `ENABLE_EXO_TOOLS` | ❌ No | `false` | Opt in to Experience Orchestration (ExO) tools. Set to `true` to register the ExO tool collections (components, data assemblies, experiences, experience templates, experience fragments). Also requires the token to hold the `exoM1` entitlement in at least one accessible org — both gates must pass. |
|
|
74
|
+
| `ENABLE_EXO_TOOLS` | ❌ No | `false` | Opt in to Experience Orchestration (ExO) tools. Set to `true` to register the ExO tool collections (components, data assemblies, design tokens, experiences, experience templates, experience fragments). Also requires the token to hold the `exoM1` entitlement in at least one accessible org — both gates must pass. |
|
|
75
75
|
|
|
76
76
|
### Configuration
|
|
77
77
|
|
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.18.0";
|
|
4130
4130
|
|
|
4131
4131
|
// src/getVersion.ts
|
|
4132
4132
|
var getVersion = () => {
|
|
@@ -4162,6 +4162,7 @@ async function registerAllTools(server) {
|
|
|
4162
4162
|
});
|
|
4163
4163
|
const aiActionTools = tools.getAiActionTools();
|
|
4164
4164
|
const assetTools = tools.getAssetTools();
|
|
4165
|
+
const contentPreviewTools = tools.getContentPreviewTools();
|
|
4165
4166
|
const contentTypeTools = tools.getContentTypeTools();
|
|
4166
4167
|
const contextTools = tools.getContextTools();
|
|
4167
4168
|
const editorInterfaceTools = tools.getEditorInterfaceTools();
|
|
@@ -4176,6 +4177,7 @@ async function registerAllTools(server) {
|
|
|
4176
4177
|
const allToolCollections = [
|
|
4177
4178
|
aiActionTools,
|
|
4178
4179
|
assetTools,
|
|
4180
|
+
contentPreviewTools,
|
|
4179
4181
|
contentTypeTools,
|
|
4180
4182
|
contextTools,
|
|
4181
4183
|
editorInterfaceTools,
|
|
@@ -4190,6 +4192,7 @@ async function registerAllTools(server) {
|
|
|
4190
4192
|
...registerExoTools ? [
|
|
4191
4193
|
tools.getComponentTools(),
|
|
4192
4194
|
tools.getDataAssemblyTools(),
|
|
4195
|
+
tools.getDesignTokenTools(),
|
|
4193
4196
|
tools.getExperienceTools(),
|
|
4194
4197
|
tools.getExperienceTemplateTools(),
|
|
4195
4198
|
tools.getExperienceFragmentTools()
|