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

@telebiz/telebiz-mcp

v1.0.1

Published

MCP server that connects Claude to Telegram via Telebiz

Readme

Telebiz MCP Server

Control Telegram through Claude using MCP (Model Context Protocol). This server connects Claude Desktop or Claude Code to your Telebiz browser session.

Quick Install

For Claude Code (Recommended)

# Install globally
npm install -g @telebiz/telebiz-mcp

# Add to Claude Code
claude mcp add telebiz -- telebiz-mcp

For Claude Desktop

  1. Install the package:

    npm install -g @telebiz/telebiz-mcp
  2. Add to your Claude Desktop config:

    macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

    {
      "mcpServers": {
        "telebiz": {
          "command": "npx",
          "args": ["-y", "@telebiz/telebiz-mcp"]
        }
      }
    }
  3. Restart Claude Desktop

Usage

  1. Open Telebiz in your browser (the MCP server auto-connects)
  2. Ask Claude to interact with Telegram:
    • "List my unread chats"
    • "Send 'Hello!' to John"
    • "Archive chats older than 30 days"
    • "Search for messages about meeting"
    • "Update the deal stage for this contact"

Architecture

┌─────────────────┐                    ┌─────────────────┐
│  Claude Desktop │◄── stdio ─────────►│   MCP Server    │
│  or Claude Code │                    │   (port 9716)   │
└─────────────────┘                    └────────┬────────┘
                                                │
                                           WebSocket
                                                │
                                       ┌────────▼────────┐
                                       │  Telebiz App    │
                                       │  (Browser)      │
                                       └─────────────────┘

Available Tools

Telegram (40+ tools)

  • Chat: listChats, getChatInfo, archiveChat, pinChat, muteChat, deleteChat
  • Messages: sendMessage, forwardMessages, deleteMessages, searchMessages, getRecentMessages
  • Folders: listFolders, createFolder, addChatToFolder, removeChatFromFolder
  • Groups: createGroup, getChatMembers, addChatMembers, removeChatMember
  • Users: searchUsers, getUserInfo
  • Batch: batchSendMessage, batchArchive, batchAddToFolder

Telebiz Core

  • Tasks: listPendingChats, getChatTasks, dismissTask, snoozeTask
  • CRM: getChatRelationship

Extra Tools

  • CRM (HubSpot): getEntityDetails, updateDealStage, updateEntityField, createContact, createDeal, searchEntities, associateEntities, linkEntityToChat
  • Notion: getNotionPage, updateNotionBlock, addNotionTodo
  • Reminders: listReminders, createReminder, completeReminder, deleteReminder
  • Bulk: bulkArchiveOldChats, bulkMessageChats
  • Skills: getSkillData, listSkills, createSkill, updateSkill, deleteSkill

Troubleshooting

"Telebiz app is not connected"

  • Open Telebiz in your browser
  • Check browser console for [MCP Bridge] Connected

Port 9716 in use

  • Another MCP server instance may be running
  • Kill the process: lsof -ti:9716 | xargs kill -9

Claude Code: Check server status

claude mcp list
/mcp  # Inside Claude Code session

Claude Desktop: Verify config

  • Open Settings → Developer → Edit Config
  • Ensure the JSON is valid
  • Restart Claude Desktop completely

Development

# Clone and build
git clone https://github.com/anthropics/telebiz-mcp
cd telebiz-mcp
npm install
npm run build

# Run locally
npm start

# Run tests
npm test

License

GPL-3.0-or-later