Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Contentful Mcp Server

    MCP (Model Context Protocol) server for the Contentful Management API

    30 stars
    TypeScript
    Updated Oct 17, 2025
    content-management
    contentful
    mcp

    Table of Contents

    • 🚀 Example Use Cases
    • 📓 Table of Contents
    • ⚙️ Getting started
    • Prerequisites
    • Installation
    • One-Click install
    • Install from source
    • Environment Variables
    • Configuration
    • 🛠️ Available Tools
    • 🤝 Contributing
    • 📦 Releases
    • 📚 Documentation
    • ❓ Help & Support
    • 📄 License and Notices
    • 🛡️ Code of Conduct

    Table of Contents

    • 🚀 Example Use Cases
    • 📓 Table of Contents
    • ⚙️ Getting started
    • Prerequisites
    • Installation
    • One-Click install
    • Install from source
    • Environment Variables
    • Configuration
    • 🛠️ Available Tools
    • 🤝 Contributing
    • 📦 Releases
    • 📚 Documentation
    • ❓ Help & Support
    • 📄 License and Notices
    • 🛡️ Code of Conduct

    Documentation

    Contentful MCP Server

    A Model Context Protocol (MCP) server that provides AI assistants with comprehensive tools to interact with Contentful APIs.

    🚀 Example Use Cases

    This MCP server provides a comprehensive set of tools for content management, allowing AI to help you create, edit, organize, and publish content directly within Contentful. Once configured, you can use natural language in your AI assistant of choice to manage and interact with your Contentful spaces, including:

    • Content Creation: "Create a new blog post for our fall product launch"
    • Content Management: "Update all product entries to include the new pricing structure"
    • Asset Organization: "Upload and organize these marketing images by campaign"
    • Workflow Automation: "Create an AI action that translates content to Spanish"
    • Content Modeling: "Add a new field to the product content type for customer ratings"

    📓 Table of Contents

    • ⚙️ Getting Started
    • Prerequisites
    • Installation
    • Environment Variables
    • Configuration
    • 🛠️ Available Tools
    • 🔍 Development
    • Testing with MCP Inspector
    • Linting
    • 📦 Releases
    • 🤝 Contributing
    • Development Setup
    • 📚 Documentation
    • ❓ Help & Support
    • 📄 License and Notices
    • 🛡️ Code of Conduct

    ⚙️ Getting started

    Prerequisites

    • Node.js
    • npm
    • A Contentful account with a Space ID
    • Contentful Management API personal access token

    Installation

    One-Click install

    Install MCP Server

    _Note: This requires Cursor to be installed. If the link doesn't work, try the manual installation below._

    Claude Desktop:

    Download the .dxt configuration file here from the latest release and import it into Claude Desktop to automatically configure the MCP server with your environment variables.

    Codex:

    bash
    codex mcp add contentful --env CONTENTFUL_MANAGEMENT_ACCESS_TOKEN="your-CMA-token" --env SPACE_ID="your-space-id" --env ENVIRONMENT_ID="master" --env CONTENTFUL_HOST="api.contentful.com" -- npx -y @contentful/mcp-server

    Install from source

    bash
    git clone https://github.com/contentful/contentful-mcp-server.git
    cd contentful-mcp-server
    npm install
    npm run build

    Environment Variables

    Environment VariableRequiredDefault ValueDescription
    CONTENTFUL_MANAGEMENT_ACCESS_TOKEN✅ Yes-Your Contentful Management API personal access token
    SPACE_ID✅ Yes-Your Contentful Space ID
    ENVIRONMENT_ID❌ NomasterTarget environment within your space
    CONTENTFUL_HOST❌ Noapi.contentful.comContentful API host
    NODE_ENV❌ NoproductionNode Environment to run in

    Configuration

    Refer to the documentation for your AI tool of choice for how to configure MCP servers. For example, see the documentation for Codex, Cursor, VS Code, or Claude Desktop.

    Below is a sample configuration:

    json
    {
      "mcpServers": {
        "contentful-mcp": {
          "command": "npx",
          "args": ["-y", "@contentful/mcp-server"],
          "env": {
            "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN": "your-CMA-token",
            "SPACE_ID": "your-space-id",
            "ENVIRONMENT_ID": "master",
            "CONTENTFUL_HOST": "api.contentful.com"
          }
        }
      }
    }

    🛠️ Available Tools

    CategoryTool NameDescription
    Context & Setupget_initial_contextInitialize connection and get usage instructions
    Content Typeslist_content_typesList all content types
    get_content_typeGet detailed content type information
    create_content_typeCreate new content types
    update_content_typeModify existing content types
    publish_content_typePublish content type changes
    unpublish_content_typeUnpublish content types
    delete_content_typeRemove content types
    Entriessearch_entriesSearch and filter entries
    get_entryRetrieve specific entries
    create_entryCreate new content entries
    update_entryModify existing entries
    publish_entryPublish entries (single or bulk)
    unpublish_entryUnpublish entries (single or bulk)
    delete_entryRemove entries
    Assetsupload_assetUpload new assets
    list_assetsList and browse assets
    get_assetRetrieve specific assets
    update_assetModify asset metadata
    publish_assetPublish assets (single or bulk)
    unpublish_assetUnpublish assets (single or bulk)
    delete_assetRemove assets
    Spaces & Environmentslist_spacesList available spaces
    get_spaceGet space details
    list_environmentsList environments
    create_environmentCreate new environments
    delete_environmentRemove environments
    Localeslist_localesList all locales in your environment
    get_localeRetrieve specific locale information
    create_localeCreate new locales for multi-language content
    update_localeModify existing locale settings
    delete_localeRemove locales from environment
    Tagslist_tagsList all tags
    create_tagCreate new tags
    AI Actionscreate_ai_actionCreate custom AI-powered workflows
    invoke_ai_actionInvoke an AI action with variables
    get_ai_action_invocationGet AI action invocation details
    get_ai_actionRetrieve AI action details and configuration
    list_ai_actionsList AI actions in a space
    update_ai_actionUpdate existing AI actions
    publish_ai_actionPublish AI actions for use
    unpublish_ai_actionUnpublish AI actions
    delete_ai_actionRemove AI actions

    🤝 Contributing

    We welcome contributions! Please see our Contributing Guide for local development setup and contribution guidelines.

    📦 Releases

    This project uses Nx Release for automated versioning and publishing. Releases are automatically generated based on Conventional Commits. See Contributing Guide for more information on release process.

    📚 Documentation

    • Model Context Protocol Documentation
    • Contentful Management API Documentation

    ❓ Help & Support

    • Contentful support resources
    • Report bugs or request features
    • Contentful Community Discord

    📄 License and Notices

    This project is licensed under the MIT License. See LICENSE for details.

    It also includes open-source components licensed under MIT, BSD-2-Clause, and Apache-2.0. For details, see the NOTICE file.

    This project includes an automated license management system that keeps track of all dependencies and their licenses. See the AUTOMATION-FOR-LICENSES file for more information.

    🛡️ Code of Conduct

    We want to provide a safe, inclusive, welcoming, and harassment-free space and experience for all participants, regardless of gender identity and expression, sexual orientation, disability, physical appearance, socioeconomic status, body size, ethnicity, nationality, level of experience, age, religion (or lack thereof), or other identity markers.

    Read our full Code of Conduct.

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • AN

      Anilist Mcp

      TypeScript·
      57
    • MC

      Mcp Server Kubernetes

      TypeScript·
      1.1k
    • BR

      Browser Control Mcp

      TypeScript·
      183

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • AN

      Anilist Mcp

      TypeScript·
      57
    • MC

      Mcp Server Kubernetes

      TypeScript·
      1.1k
    • BR

      Browser Control Mcp

      TypeScript·
      183

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k