elasticemail-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
elasticemail-mcp-server by ElasticEmail | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | 7 mo ago | this 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
elasticemail-mcp-server · Install
Installation
- Ensure you have .NET SDK 10 or higher installed
- Clone the repository
- Open port 5001 for HTTP connections
- 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
- Open the Chat window in VS Code
- Choose 'Agent' mode
- Use settings.json to connect to MCP server
- Add configuration:
"my-server-unique-number": {
"url": "http://localhost:5001/",
"headers": {
"X-Auth-Token": <api_key>
}
}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