elasticemail-mcp-server vs memory
并排对比,帮你在这两个 MCP server 之间做选择。
elasticemail-mcp-server by ElasticEmail | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 31 | 77 |
| 官方 | — | ✓ |
| 分类 | 沟通协作效率工具开发者工具 | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | C# | TypeScript |
| 最近提交 | 7 个月前 | 本月 |
elasticemail-mcp-server · 概述
ElasticEmail MCP 服务器使 AI 代理能够通过全套邮件操作发送、管理和跟踪邮件活动。
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
elasticemail-mcp-server · 使用场景
- 由 AI 代理触发的自动化邮件营销活动
- 基于电子邮件的客户支持自动化
- 来自 AI 驱动应用程序的事务性邮件发送
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
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>
}
}memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .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"]
}
}
}