ultimate_mcp_server vs action_mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | action_mcp by seuros | |
|---|---|---|
| Stars | ★ 149 | ★ 113 |
| 30d uses | — | — |
| Score | 85 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | Python | Ruby |
| 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.
action_mcp · Summary
A Ruby gem that provides MCP server capabilities to Rails applications with robust production-ready network-based deployments.
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
action_mcp · Use cases
- Building MCP servers for Rails applications that need to expose data and functionality to AI systems
- Creating production-ready MCP integrations that require robust network-based connections
- Developing custom MCP tools and prompts for Ruby/Rails applications with consent management and structured output
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_serveraction_mcp · Install
Installation
Add ActionMCP to your Gemfile:
# Add gem to your Gemfile
$ bundle add actionmcp
# Install dependencies
bundle install
# Copy migrations from the engine
bin/rails action_mcp:install:migrations
# Generate base classes and configuration
bin/rails generate action_mcp:install
# Create necessary database tables
bin/rails db:migrateConfiguration
ActionMCP supports network-based MCP connections. To connect with Claude Desktop, add this to your config/mcp.yml:
development:
servers:
- name: action_mcp
command: ["bundle", "exec", "rails", "server"]
args: []
env: {}And in Claude Desktop configuration:
{
"mcpServers": {
"action_mcp": {
"command": "ruby",
"args": ["-e", "require 'action_mcp'; ActionMCP.start"]
}
}
}