ultimate_mcp_server vs mcp-server-12306
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-server-12306 by drfccv | |
|---|---|---|
| Stars | ★ 149 | ★ 327 |
| 30d uses | — | — |
| Score | 85 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolstravelDeveloper Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 1 mo ago |
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.
mcp-server-12306 · Summary
A high-performance 12306 train ticket query system that provides real-time data via MCP protocol.
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
mcp-server-12306 · Use cases
- AI assistants helping travelers find and compare train options
- Automated travel booking systems requiring real-time 12306 data
- Applications that need to display live railway schedules and availability
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_servermcp-server-12306 · Install
Installation
Mode 1: Stdio Mode (Recommended for Claude Desktop)
Using uvx:
{
"mcpServers": {
"12306": {
"command": "uvx",
"args": ["mcp-server-12306"]
}
}
}Using pipx:
{
"mcpServers": {
"12306": {
"command": "pipx",
"args": ["run", "--no-cache", "mcp-server-12306"]
}
}
}Mode 2: HTTP Mode
git clone https://github.com/drfccv/mcp-server-12306.git
cd mcp-server-12306
uv sync
uv run python scripts/start_server.pyClient configuration:
{
"mcpServers": {
"12306": {
"url": "http://localhost:8000/mcp"
}
}
}