MCP Catalogs
Home

CAD-MCP vs memory

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

CAD-MCP
by daobataotie
memory
by modelcontextprotocol
Stars★ 338★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsProductivityOther
Knowledge GraphAI / LLM ToolsProductivity
LanguagePythonTypeScript
Last commit10 mo agothis month

CAD-MCP · Summary

MCP server that controls CAD software through natural language commands for drawing operations.

memory · Summary

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

CAD-MCP · Use cases

  • Automating CAD drawing creation through text commands
  • Integrating CAD operations into AI workflows
  • Creating custom CAD tools through natural language interfaces

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

CAD-MCP · Install

Installation

  1. Install dependencies:
pip install -r requirements.txt
  1. Configure your MCP client (Claude Desktop example):
{
    "mcpServers": {
        "CAD": {
            "command": "python",
            "args": [
                "~/cad-mcp/src/server.py"
            ]
        }
    }
}
  1. Start the server:
python src/server.py

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.