smartlead-mcp-server vs memory
Side-by-side comparison to help you pick between these two MCP servers.
smartlead-mcp-server by LeadMagic | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityDeveloper Tools | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
smartlead-mcp-server · Summary
SmartLead MCP server provides complete API access to 116+ cold email automation tools with beautiful React Ink installer.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
smartlead-mcp-server · Use cases
- Cold email marketing automation directly from AI assistants
- Campaign management and analytics through conversational interfaces
- Lead tracking and follow-up automation integrated with AI workflows
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
smartlead-mcp-server · Install
Installing SmartLead MCP Server
Option 1: NPX (Recommended)
# Beautiful interactive installer
npx smartlead-mcp-by-leadmagic install
# Or direct usage
SMARTLEAD_API_KEY=your-key npx smartlead-mcp-by-leadmagicOption 2: Global Install
npm install -g smartlead-mcp-by-leadmagic
smartlead-mcp-by-leadmagic installClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"smartlead": {
"command": "npx",
"args": ["smartlead-mcp-by-leadmagic"]
}
}
}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"]
}
}
}