MCP Catalogs
Home

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
Score4077
Official
Categories
CommunicationProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit11 mo agothis 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-leadmagic

Option 2: Global Install

npm install -g smartlead-mcp-by-leadmagic
smartlead-mcp-by-leadmagic install

Claude 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
Comparison generated from public README + GitHub signals. Last updated automatically.