Contentful MCP Server

Developmentstdio
Repositorio

Contentful's official MCP server for the Content Management API. Gives AI agents tools to create, edit, organize, and publish content, manage content models and assets, and work across spaces and environments. Useful for automating editorial workflows and content operations in a Contentful-backed headless CMS.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "contentful": {
      "command": "npx",
      "args": [],
      "env": {
        "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN": "<YOUR_CONTENTFUL_MANAGEMENT_ACCESS_TOKEN>",
        "CONTENTFUL_SPACE_ID": "<YOUR_CONTENTFUL_SPACE_ID>"
      }
    }
  }
}

Herramientas (3)

list_entries

List or search entries in a Contentful space and environment.

{
  "type": "object",
  "required": [],
  "properties": {
    "content_type": {
      "type": "string",
      "description": "Optional content type ID to filter by"
    }
  }
}

create_entry

Create a new entry of a given content type.

{
  "type": "object",
  "required": [
    "content_type",
    "fields"
  ],
  "properties": {
    "fields": {
      "type": "object",
      "description": "Field values for the entry"
    },
    "content_type": {
      "type": "string",
      "description": "Content type ID for the new entry"
    }
  }
}

publish_entry

Publish an existing entry so it becomes available via the delivery API.

{
  "type": "object",
  "required": [
    "entry_id"
  ],
  "properties": {
    "entry_id": {
      "type": "string",
      "description": "ID of the entry to publish"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Contentful (@contentful)
Repositorio
https://github.com/contentful/contentful-mcp-server
Estrellas
0
Última actualización
12 de julio de 2026