12306-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
12306-mcp by Joooook | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 878 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM Toolstravel | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 2 mo ago | this month |
12306-mcp · Summary
12306 MCP server provides ticket search functionality for Chinese railway booking.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
12306-mcp · Use cases
- Travel planning AI assistants that can help users find train tickets
- Automated travel booking systems that integrate with 12306
- Multi-agent systems that need access to Chinese railway information
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
12306-mcp · Install
# Install via npm
npm install -g @joooook/12306-mcp
# Run directly
npx -y 12306-mcp
# Or with specific port
npx -y 12306-mcp --port 8080
# Claude Desktop configuration
{
"mcpServers": {
"12306-mcp": {
"command": "npx",
"args": [
"-y",
"12306-mcp"
]
}
}
}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