MCP Catalogs
首页

filesystem vs telegram-api-mcp

并排对比,帮你在这两个 MCP server 之间做选择。

filesystem
by modelcontextprotocol
telegram-api-mcp
by timoncool
Stars★ 85,748★ 20
30天用量
综合分7745
官方
分类
本地文件系统开发者工具效率工具
沟通协作开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交本月1 个月前

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

telegram-api-mcp · 概述

全面的 Telegram Bot API MCP 服务器,完整支持 v9.6,包含元模式和高级速率限制。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

telegram-api-mcp · 使用场景

  • 构建具有 AI 助手的 Telegram 机器人,能够发送消息、媒体、投票并与聊天互动
  • 通过自动化审核和内容发布管理 Telegram 群组/频道
  • 将 Telegram 功能集成到 AI 驱动的工作流程和自动化中

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 中安装。

telegram-api-mcp · 安装

安装

Claude Code

claude mcp add telegram -- npx telegram-api-mcp -e TELEGRAM_BOT_TOKEN=your_token

Claude Desktop

添加到 claude_desktop_config.json

{
  "mcpServers": {
    "telegram": {
      "command": "npx",
      "args": ["telegram-api-mcp"],
      "env": {
        "TELEGRAM_BOT_TOKEN": "your_token_from_botfather"
      }
    }
  }
}

从源码安装

git clone https://github.com/timoncool/telegram-api-mcp.git
cd telegram-api-mcp
npm install && npm run build
TELEGRAM_BOT_TOKEN=your_token node dist/index.js
对比内容由 README + GitHub 公开数据自动生成,定期更新。