workflows-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
workflows-mcp-server by cyanheads | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 31 | ★ 149 |
| 30d uses | — | — |
| Score | 41 | 85 |
| Official | — | — |
| Categories | ProductivityDeveloper ToolsAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 10 mo ago | 2 mo ago |
workflows-mcp-server · Summary
MCP server that enables AI agents to discover, create, and execute complex workflows defined in YAML files.
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.
workflows-mcp-server · Use cases
- Automating complex multi-step processes by defining them as reusable workflows
- Improving agent reliability by providing structured plans for complex tasks
- Dynamically guiding agent behavior with global instructions across all workflows
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
workflows-mcp-server · Install
Installation
Prerequisites
- Node.js (>=20.0.0)
- npm (comes with Node.js)
MCP Client Settings
Add the following to your MCP client's configuration file (e.g., cline_mcp_settings.json):
{
"mcpServers": {
"workflows-mcp-server": {
"command": "npx",
"args": ["workflows-mcp-server"],
"env": {
"MCP_LOG_LEVEL": "info"
}
}
}
}Manual Installation
npm install workflows-mcp-server
npm run build
npm startultimate_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_server