telegram-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
telegram-mcp by chaindead | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 326 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 沟通协作效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
telegram-mcp · 概述
一个基于Go的MCP服务器,将Telegram API与AI助手连接,用于管理消息、对话框和草稿。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
telegram-mcp · 使用场景
- 通过AI助手检查和总结未读Telegram消息
- 按重要性对Telegram聊天进行分类,并使用AI建议进行组织
- 监控特定聊天中有关主题的更新并草拟回复
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
telegram-mcp · 安装
安装
**Homebrew** (macOS/Linux):
brew install chaindead/tap/telegram-mcp**NPX** (跨平台):
npx -y @chaindead/telegram-mcp**从发布版本安装**: 从[GitHub发布页面](https://github.com/chaindead/telegram-mcp/releases)下载适合您平台的二进制文件
**从源码安装**:
go install github.com/chaindead/telegram-mcp@latest**Claude Desktop配置**:
{
"mcpServers": {
"telegram": {
"command": "telegram-mcp",
"env": {
"TG_APP_ID": "<您的应用ID>",
"TG_API_HASH": "<您的API哈希>"
}
}
}
}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 中安装。