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

@vkruglikov/telegram-mcp

v0.1.1

Published

MCP server for your own Telegram account over MTProto

Readme

telegram-mcp

Your Telegram account in an MCP client. Signs in as you, not as a bot: it reads your private chats, and anything it sends comes from you.

Install

Node 22+.

  1. Get API keys: my.telegram.orgAPI development tools → create an app (platform Other, rest blank) → copy api_id and api_hash.

  2. Sign in — once, in a terminal:

    TELEGRAM_API_ID=... TELEGRAM_API_HASH=... npx @vkruglikov/telegram-mcp login

    It asks for your phone, the code Telegram sends, and your 2FA password if you have one. This is a terminal command and not a tool on purpose — as a tool, the code and the password would pass through the model's context and land in chat logs.

  3. Register the server:

    claude mcp add telegram \
      --env TELEGRAM_API_ID=... \
      --env TELEGRAM_API_HASH=... \
      -- npx -y @vkruglikov/telegram-mcp

    Clients that read a JSON config instead:

    {
      "mcpServers": {
        "telegram": {
          "command": "npx",
          "args": ["-y", "@vkruglikov/telegram-mcp"],
          "env": { "TELEGRAM_API_ID": "...", "TELEGRAM_API_HASH": "..." }
        }
      }
    }
  4. Check: npx @vkruglikov/telegram-mcp status.

logout revokes the session server-side and deletes it locally.

Features

Your account:

| | | |---|---| | list_chats | Dialogs, newest first, or only unread | | search_chats | Find a dialog by name — Вадим also matches Vadim | | get_history | Read a chat. Does not mark it read | | search_messages | Full-text, one chat or the whole account | | send_message / send_file | Delivered immediately, no undo | | download_media | Save an attachment | | mark_read | The only tool that marks anything read — the other side sees it | | list_contacts | Saved contacts |

All of Telegram, not just your chats:

| | | |---|---| | search_public_chats | Channels, groups and people you have never opened | | search_public_posts | Text of every public channel. A few free searches a day; the result says how many are left |

Prompts, shown as slash commands: personalize, draft_reply, catch_up.

Drafting in your voice

  1. Run /personalize. It calls sample_my_messages to collect messages you sent in recent private chats, then describes the patterns: languages and how you mix them, message length, greetings and sign-offs, punctuation you skip, which emoji and where, recurring phrasings, how formality shifts, and what you never do.
  2. It shows the profile before saving. Edit or reject it.
  3. Saved to ~/.telegram-mcp/style.md. Reconnect the server to load it.
  4. /draft_reply <chat> [intent] writes in that voice and shows the draft. It never sends.

get_style_profile prints the profile, forget_style_profile deletes it.

The profile covers how you write, not what you think. Facts, opinions and commitments stay yours to supply.

Everything stays on your machine

Local process, straight to Telegram, no service in between. Everything lives in ~/.telegram-mcp:

  • session.db — your login session
  • style.md — your style profile, if you made one
  • downloads/ — downloaded attachments

No telemetry, no account of ours, no third party. Credentials, session and messages go nowhere else.

Treat session.db like a password. It grants full access to your account without the password and without 2FA. Never copy it to another machine or into a repo. If it leaks, revoke it in Telegram → Settings → Devices. Deleting the folder by hand revokes nothing — use logout.

License

MIT