@contentful/mcp-server 1.18.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 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.17.0";
4129
+ var MCP_VERSION = "1.18.0";
4130
4130
 
4131
4131
  // src/getVersion.ts
4132
4132
  var getVersion = () => {
@@ -4192,6 +4192,7 @@ async function registerAllTools(server) {
4192
4192
  ...registerExoTools ? [
4193
4193
  tools.getComponentTools(),
4194
4194
  tools.getDataAssemblyTools(),
4195
+ tools.getDesignTokenTools(),
4195
4196
  tools.getExperienceTools(),
4196
4197
  tools.getExperienceTemplateTools(),
4197
4198
  tools.getExperienceFragmentTools()