Strapi Content MCP

Strapi Content MCP

Enables AI assistants to interact directly with Strapi v5 CMS content through full CRUD operations, media uploads, and content type exploration using Strapi's Document Service API.

Category
Visit Server

README

Strapi Content MCP

npm version License: MIT

A Strapi v5 plugin that exposes your content via the Model Context Protocol (MCP), enabling AI assistants like Claude to interact directly with your Strapi content.

Features

  • Direct Strapi Integration - Uses Strapi's internal Document Service API with full sanitization
  • HTTP/SSE Transport - Standard HTTP endpoint for MCP communication
  • 8 MCP Tools - Full CRUD operations plus media upload
  • Security First - Input/output sanitization, route-level auth via Strapi policies
  • Strapi v5 Compatible - Built for the latest Strapi version

Installation

# Using npm
npm install strapi-content-mcp

# Using yarn
yarn add strapi-content-mcp

Configuration

Add to your Strapi config/plugins.ts (or config/plugins.js):

export default {
  'strapi-content-mcp': {
    enabled: true,
    config: {
      // Optional: Set log level (default: 'info')
      logLevel: 'info', // 'error' | 'warn' | 'info' | 'debug' | 'trace'
    },
  },
};

Then rebuild and start Strapi:

yarn build
yarn develop

Connecting Claude Desktop

Edit your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "strapi-content": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:1337/api/strapi-content-mcp/mcp"
      ]
    }
  }
}

Restart Claude Desktop and start chatting with your Strapi content!

Available Tools

Tool Description
list_content_types List all content types with their schemas
list_components List components with pagination
find_many Query documents with filters, sort, pagination
find_one Get single document by documentId
create Create new document
update Update existing document
delete Delete document
upload_media Upload media from URL

Example Usage

Once connected, ask Claude:

  • "List all content types in Strapi"
  • "Find all published articles"
  • "Create a new blog post titled 'Hello World'"
  • "Update article abc123 to change the title"
  • "Upload this image to Strapi"

Tool Examples

Finding Documents

find_many with uid: "api::article.article"
- filters: { publishedAt: { $notNull: true } }
- sort: "createdAt:desc"
- pagination: { page: 1, pageSize: 10 }
- populate: ["author", "category"]

Creating Documents

create with uid: "api::article.article"
- data: { title: "My Article", content: "Hello world" }
- status: "published"

Security

This plugin includes several security measures:

  • Output Sanitization: All data returned is sanitized to remove private fields
  • Input Sanitization: All incoming data is sanitized before database writes
  • Fail-Closed: If sanitization fails, operations are rejected (no unsanitized data exposed)

For production use, consider adding authentication:

// config/plugins.ts
export default {
  'strapi-content-mcp': {
    enabled: true,
    config: {
      // Add route middleware for authentication
    },
  },
};

Requirements

  • Strapi v5.x
  • Node.js 18+ (including Node.js 22, 24+)

API Endpoint

The MCP endpoint is available at:

POST/GET/DELETE http://localhost:1337/api/strapi-content-mcp/mcp

Troubleshooting

Memory Issues

If you encounter heap memory errors during Strapi build:

NODE_OPTIONS='--max-old-space-size=8192' yarn build
NODE_OPTIONS='--max-old-space-size=8192' yarn develop

Connection Issues

  1. Ensure Strapi is running on the expected port
  2. Check Claude Desktop config file syntax (valid JSON)
  3. Restart Claude Desktop after config changes
  4. Check Strapi logs for MCP-related errors

Contributing

Contributions welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

License

MIT - see LICENSE for details.

Author

Paul Bratslavsky (@PaulBratslavsky)

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured