MCP Catalogs
Home

elasticemail-mcp-server vs memory

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

elasticemail-mcp-server
by ElasticEmail
memory
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3177
Official
Categories
CommunicationProductivityDeveloper Tools
Knowledge GraphAI / LLM ToolsProductivity
LanguageC#TypeScript
Last commit7 mo agothis month

elasticemail-mcp-server · Summary

ElasticEmail MCP server enables AI agents to send, manage, and track email campaigns through a full suite of email operations.

memory · Summary

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

elasticemail-mcp-server · Use cases

  • Automated email marketing campaigns triggered by AI agents
  • Email-based customer support automation
  • Transactional email sending from AI-powered applications

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

elasticemail-mcp-server · Install

Installation

  1. Ensure you have .NET SDK 10 or higher installed
  2. Clone the repository
  3. Open port 5001 for HTTP connections
  4. Configure the server with your ElasticEmail API token

Integration with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "elasticemail": {
      "command": "dotnet",
      "args": ["run", "--project", "path/to/elasticemail-mcp-server"],
      "env": {
        "X-Auth-Token": "your_api_token_here"
      }
    }
  }
}

Integration with VS Code Copilot Agent

  1. Open the Chat window in VS Code
  2. Choose 'Agent' mode
  3. Use settings.json to connect to MCP server
  4. Add configuration:
"my-server-unique-number": {
    "url": "http://localhost:5001/",
    "headers": {
        "X-Auth-Token": <api_key>
    }
}

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.