MCP Catalogs
Home

12306-mcp vs memory

Side-by-side comparison to help you pick between these two MCP servers.

12306-mcp
by Joooook
memory
by modelcontextprotocol
Stars★ 878★ 85,748
30d uses
Score4977
Official
Categories
E-commerceAI / LLM Toolstravel
Knowledge GraphAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit2 mo agothis month

12306-mcp · Summary

12306 MCP server provides ticket search functionality for Chinese railway booking.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

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

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

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"
      ]
    }
  }
}

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.