Contentful MCP Server

Developmentstdio
Repository

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.

Connect

Add this configuration to .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>"
      }
    }
  }
}

Tools (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"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Contentful (@contentful)
Repository
https://github.com/contentful/contentful-mcp-server
Stars
0
Last Updated
July 12, 2026