{
  "name": "@overpod/mcp-telegram",
  "version": "1.41.2",
  "mcpName": "io.github.mcp-telegram/mcp-telegram",
  "description": "MCP server for Telegram userbot — messages, media, reactions, polls & more. Built on GramJS/MTProto.",
  "type": "module",
  "main": "dist/index.js",
  "exports": {
    ".": "./dist/index.js",
    "./service": "./dist/telegram-client.js",
    "./manifest": "./dist/manifest.js"
  },
  "bin": {
    "mcp-telegram": "dist/cli.js",
    "mcp-telegram-manifest": "dist/manifest.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "start": "node dist/index.js",
    "login": "node dist/qr-login-cli.js",
    "clean": "node --eval \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
    "prebuild": "npm run clean",
    "build": "tsc && chmod +x dist/cli.js dist/manifest.js dist/qr-login-cli.js",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build",
    "lint": "biome check src/",
    "lint:fix": "biome check --fix src/",
    "format": "biome format --write src/",
    "test": "tsx --test 'src/**/*.test.ts'",
    "test:watch": "tsx --test --watch 'src/**/*.test.ts'",
    "test:coverage": "c8 --all --src src --exclude 'src/**/*.test.ts' --reporter=text tsx --test 'src/**/*.test.ts'",
    "gen:changelog": "tsx scripts/gen-changelog-docs.ts",
    "predocs:dev": "npm run gen:changelog",
    "docs:dev": "vitepress dev docs",
    "predocs:build": "npm run gen:changelog",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs"
  },
  "keywords": [
    "mcp",
    "mcp-server",
    "model-context-protocol",
    "telegram",
    "gramjs",
    "mtproto",
    "userbot",
    "claude",
    "ai-tools"
  ],
  "author": "overpod",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mcp-telegram/mcp-telegram.git"
  },
  "homepage": "https://github.com/mcp-telegram/mcp-telegram#readme",
  "bugs": {
    "url": "https://github.com/mcp-telegram/mcp-telegram/issues"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "big-integer": "^1.6.52",
    "dotenv": "^17.4.2",
    "qrcode": "^1.5.4",
    "telegram": "^2.26.22",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.3",
    "@types/node": "^26.1.1",
    "@types/qrcode": "^1.5.6",
    "c8": "^11.0.0",
    "tsx": "^4.23.0",
    "typescript": "^7.0.2",
    "vitepress": "^2.0.0-alpha.18"
  }
}
