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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this 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
- Install dependencies:
pip install -r requirements.txt- Configure your MCP client (Claude Desktop example):
{
"mcpServers": {
"CAD": {
"command": "python",
"args": [
"~/cad-mcp/src/server.py"
]
}
}
}- Start the server:
python src/server.pymemory · 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"]
}
}
}