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.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .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>"
      }
    }
  }
}

Araçlar (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"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
Contentful (@contentful)
Repository
https://github.com/contentful/contentful-mcp-server
Yıldızlar
0
Son güncelleme
12 Temmuz 2026