Contentful MCP Server

mcp server that queries my contentful space.

Local serverstdio

What is the Contentful MCP server?

Most developer tooling work still happens through a UI a human drives. Contentful MCP server moves it into the conversation instead. mcp server that queries my contentful space.

The short version

A Model Context Protocol (MCP) server that allows Claude to interact with Contentful CMS data directly. This integration enables Claude to fetch content types and entries from your Contentful space.

  • Fetch all content types from your Contentful space
  • Retrieve entries for specific content types
  • Structured responses for easy consumption by AI assistants

Getting it running

Installation goes through your MCP client rather than a global install: point it at Create on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: CONTENTFUL_SPACE_ID, CONTENTFUL_ACCESS_TOKEN, CONTENTFUL_PREVIEW_ACCESS_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js (v16 or higher) - A Contentful account with API keys - Claude Desktop (to use the MCP server with Claude)

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by tejedamiguel6; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Contentful's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How to install the Contentful MCP server

{
  "mcpServers": {
    "contentful": {
      "command": "node",
      "args": [
        "/absolute/path/to/contentful-mcp-server/dist/index.js"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js (v16 or higher) - A Contentful account with API keys - Claude Desktop (to use the MCP server with Claude)
VariableDescriptionRequired
CONTENTFUL_SPACE_IDConfiguration value read at startup.Optional
CONTENTFUL_ACCESS_TOKENCredential the server authenticates with.Yes
CONTENTFUL_PREVIEW_ACCESS_TOKENCredential the server authenticates with.Yes

Frequently asked questions

Node.js v16 or higher, a Contentful account with API keys, and Claude Desktop to use the server with Claude.