ultimate_mcp_server vs typo3-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | typo3-mcp-server by hauptsacheNet | |
|---|---|---|
| Stars | ★ 149 | ★ 80 |
| 30d uses | — | — |
| Score | 85 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsProductivityAI / LLM Tools |
| Language | Python | PHP |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
typo3-mcp-server · Summary
MCP server for TYPO3 CMS enabling safe AI content management through workspaces with OAuth authentication.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
typo3-mcp-server · Use cases
- AI-assisted content translation between languages
- Bulk content updates and SEO optimization
- Content auditing and migration using AI tools
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servertypo3-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"
]
}
}
}