Contentful MCP Server

Developmentstdio
代码仓库

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.

连接

将此配置添加到 .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>"
      }
    }
  }
}

工具 (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"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Contentful (@contentful)
代码仓库
https://github.com/contentful/contentful-mcp-server
星标
0
最后更新
2026年7月12日