elasticemail-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
elasticemail-mcp-server by ElasticEmail | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 31 | 77 |
| 官方 | — | ✓ |
| 分类 | 沟通协作效率工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | C# | TypeScript |
| 最近提交 | 7 个月前 | 本月 |
elasticemail-mcp-server · 概述
ElasticEmail MCP 服务器使 AI 代理能够通过全套邮件操作发送、管理和跟踪邮件活动。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
elasticemail-mcp-server · 使用场景
- 由 AI 代理触发的自动化邮件营销活动
- 基于电子邮件的客户支持自动化
- 来自 AI 驱动应用程序的事务性邮件发送
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
elasticemail-mcp-server · 安装
安装
- 确保您已安装 .NET SDK 10 或更高版本
- 克隆存储库
- 为连接打开端口 5001
- 使用您的 ElasticEmail API 令牌配置服务器
与 Claude Desktop 集成
添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"elasticemail": {
"command": "dotnet",
"args": ["run", "--project", "path/to/elasticemail-mcp-server"],
"env": {
"X-Auth-Token": "your_api_token_here"
}
}
}
}与 VS Code Copilot Agent 集成
- 在 VS Code 中打开聊天窗口
- 选择 'Agent' 模式
- 使用 settings.json 连接到 MCP 服务器
- 添加配置:
"my-server-unique-number": {
"url": "http://localhost:5001/",
"headers": {
"X-Auth-Token": <api_key>
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything