npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@itapi-core/mcp-telegram

v1.0.0

Published

MCP server for mcp-telegram

Downloads

68

Readme

Telegram MCP Server

KR: Telegram Bot API를 MCP(Model Context Protocol) 도구로 제공하는 서버입니다. 메시지 전송 및 최근 업데이트 내역 조회를 지원합니다. EN: This server exposes Telegram Bot APIs as MCP (Model Context Protocol) tools. It supports sending messages and fetching recent updates.

KR: 텔레그램 봇을 통해 실시간 알림을 보내거나 사용자의 응답을 읽어오는 워크플로우를 구성할 수 있습니다. EN: You can configure workflows to send real-time notifications or read user responses via a Telegram bot.

1) 인코딩 / Encoding

  • KR: 이 문서는 UTF-8 기준입니다.
  • EN: This document is written in UTF-8.

2) 환경 변수 / Environment Variables

필수 옵션 / Required Options

  • TELEGRAM_BOT_TOKEN (필수/Required): BotFather로부터 발급받은 API 토큰

선택 옵션 / Optional Options

  • PORT (선택/Optional): HTTP 모드 사용 시 서버가 바인딩할 포트 (기본값: 3000)
  • TRANSPORT (선택/Optional): 서버 통신 방식 (stdio 또는 http, 기본값: stdio)

3) 실행 / Run

npm install
npm run build
npm start

4) MCP 서버 설정 / MCP Server Configuration

npx 설정 / npx Configuration

{
  "mcpServers": {
    "telegram": {
      "command": "npx",
      "args": ["-y", "mcp-telegram"],
      "env": {
        "TELEGRAM_BOT_TOKEN": "your-telegram-bot-token"
      }
    }
  }
}

5) 도구 분류 / Tool Categories

A. Telegram 봇 통신 / Telegram Bot Communication

  1. telegram_send_message
  • KR: 특정 채팅/유저에게 텍스트 메시지 발송
  • EN: Send a text message to a specific chat/user.
  • 인자 / Args: chat_id (required), text (required)
  1. telegram_get_updates
  • KR: 봇이 수신한 최근 메시지/이벤트 내역 조회
  • EN: Fetch recent messages/events received by the bot.
  • 인자 / Args: 없음 / None