MCP Catalogs
Home

filesystem vs telegram-api-mcp

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
telegram-api-mcp
by timoncool
Stars★ 85,748★ 20
30d uses
Score7745
Official
Categories
File SystemDeveloper ToolsProductivity
CommunicationDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

telegram-api-mcp · Summary

Comprehensive Telegram Bot API MCP server with full v9.6 coverage, meta-mode, and advanced rate limiting.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

telegram-api-mcp · Use cases

  • Building Telegram bots with AI assistants that can send messages, media, polls and interact with chats
  • Managing Telegram groups/channels through automated moderation and content posting
  • Integrating Telegram functionality into AI-powered workflows and automations

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using 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 Extension

Click the installation buttons in the README to install directly in VS Code.

telegram-api-mcp · Install

Installation

Claude Code

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

Claude Desktop

Add to claude_desktop_config.json:

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

From source

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
Comparison generated from public README + GitHub signals. Last updated automatically.