smartlead-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
smartlead-mcp-server by LeadMagic | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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"]
}
}
}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