smartlead-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
smartlead-mcp-server by LeadMagic | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | 沟通协作效率工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
smartlead-mcp-server · 概述
SmartLead MCP 服务器提供 116+ 个冷邮件自动化工具的完整 API 访问,配备精美的 React Ink 安装程序。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
smartlead-mcp-server · 使用场景
- 直接从 AI 助手进行冷邮件营销自动化
- 通过对话界面进行活动管理和分析
- 与 AI 工作流集成的潜在客户跟踪和跟进自动化
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
smartlead-mcp-server · 安装
安装 SmartLead MCP 服务器
选项 1:NPX(推荐)
# 美观的交互式安装程序
npx smartlead-mcp-by-leadmagic install
# 或直接使用
SMARTLEAD_API_KEY=your-key npx smartlead-mcp-by-leadmagic选项 2:全局安装
npm install -g smartlead-mcp-by-leadmagic
smartlead-mcp-by-leadmagic installClaude Desktop 配置
添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"smartlead": {
"command": "npx",
"args": ["smartlead-mcp-by-leadmagic"]
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。