typo3-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
typo3-mcp-server by hauptsacheNet | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 80 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
typo3-mcp-server · Use cases
- AI-assisted content translation between languages
- Bulk content updates and SEO optimization
- Content auditing and migration using AI tools
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"
]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything