This extension provides a Model Context Protocol (MCP) server implementation for TYPO3 that allows AI assistants to safely view and manipulate TYPO3 pages and records through TYPO3's workspace system.
All content changes are automatically queued in TYPO3 workspaces, making it completely safe for AI assistants to create, update, and modify content without immediately affecting your live website. Changes require explicit publishing to become visible to site visitors.
With the TYPO3 MCP Server, your AI assistant can help you:
- Translate Pages: "Translate the /about-us page to German" - The AI reads your content, translates it, and creates proper language versions
- Import Documents: "Create a news article from this Word document" - Transform external documents into TYPO3 content with proper structure
- Bulk Updates: "Update all product descriptions to include our new sustainability message" - Make consistent changes across multiple pages
- SEO Optimization: "Add meta descriptions to all pages that don't have them" - Automatically generate missing SEO content based on page content
- Tone Analysis: "Review the tone of our product pages and make them more friendly" - Get suggestions for improving content voice and style
- Content Audit: "Find all pages mentioning our old company name" - Quickly locate content that needs updating
- Template Application: "Apply our standard legal disclaimer to all service pages" - Consistently apply content patterns
- Content Migration: "Copy all news articles from 2023 to the archive folder" - Reorganize content efficiently
- Multi-language Management: "Ensure all German pages have English translations" - Identify and fill translation gaps
All these operations happen safely in workspaces, giving you full control to review before publishing!
💡 Want to know how it works? Check out our Technical Overview for detailed information about the implementation, available tools, and real-world examples with actual tool calls.
Feature | Status | Notes |
---|---|---|
MCP Connection | ✅ Ready | HTTP and stdin/stdout protocols (thanks to logiscape/mcp-sdk-php) |
Authentication | ✅ Ready | OAuth for Backend Users |
Page Tree Navigation | ✅ Ready | Page tree view similar to the TYPO3 backend |
Page Content Discovery | ✅ Ready | Similar to the List or Page module with backend layout support |
Record Reading/Writing | ✅ Ready | Read and write any workspace-capable TYPO3 table (core & extensions) with full schema inspection |
Content Translation | Implemented, needs real-world testing | |
Fileadmin Support | ❌ Missing | Not yet implemented |
Workspace Selection | ❌ Missing | Currently uses the first writable workspace of the user |
While there are a lot of automated tests, and even some LLM test, TYPO3 instances are widely different and Language Models are also widely different. Feel free to create issues here on GitHub or share experiences in the typo3-core-ai channel.
composer require hn/typo3-mcp-server
Requirements:
- TYPO3 v13.4+
- TYPO3 Workspaces extension (automatically installed as dependency)
There are two ways to connect AI assistants like Claude Desktop to your TYPO3 installation:
For secure remote access with proper authentication:
- Go to [Username] → MCP Server in your TYPO3 backend
- Copy the Server URL (and optionally the Integration Name)
- Add the Integration to whatever MCP Client you are using.
This method gives you admin privileges by default. Add this to your mcp config file of Claude Desktop or whatever client you are using.
{
"mcpServers": {
"[your-typo3-name]": {
"command": "php",
"args": [
"vendor/bin/typo3",
"mcp:server"
]
}
}
}
Tools are defined in the Classes/MCP/Tools
directory. Each tool follows the MCP tool specification and maps to specific TYPO3 functionality.
- 📖 Technical Overview - Comprehensive guide covering architecture, implementation details, and advanced usage
- 🏗️ Architecture Documentation - Deep dives into specific implementation aspects:
- Workspace Transparency - How workspace complexity is hidden from AI
- Language Overlays - Multi-language content handling
- Inline Relations - Managing TYPO3's complex relation types
GPL-2.0-or-later