typo3-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
typo3-mcp-server by hauptsacheNet | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 80 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | PHP | TypeScript |
| Last commit | this month | this month |
typo3-mcp-server · Summary
MCP server for TYPO3 CMS enabling safe AI content management through workspaces with OAuth authentication.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
typo3-mcp-server · Use cases
- AI-assisted content translation between languages
- Bulk content updates and SEO optimization
- Content auditing and migration using AI tools
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
typo3-mcp-server · Install
Installation
composer require hn/typo3-mcp-server**Requirements:**
- TYPO3 v13.4+
- TYPO3 Workspaces extension (automatically installed as dependency)
Quick Start
Option 1: OAuth Authentication (Recommended)
- Go to **[Username] → MCP Server** in your TYPO3 backend
- Copy the Server URL (and optionally the Integration Name)
- Add the Integration to your MCP Client.
Option 2: Local Command Line Connection
Add this to your MCP config file (e.g., Claude Desktop):
{
"mcpServers": {
"[your-typo3-name]": {
"command": "php",
"args": [
"vendor/bin/typo3",
"mcp:server"
]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.