diff --git a/package.json b/package.json index 7082313..a9e0f05 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,26 @@ { - "name": "telegram-mcp", + "name": "@zhigang1992/telegram-mcp", "license": "MIT", "version": "1.0.1", "type": "module", + "description": "Telegram MCP server for interacting with Telegram via the Model Context Protocol", + "keywords": ["telegram", "mcp", "model-context-protocol", "ai", "chatbot"], + "author": "zhigang1992", + "repository": { + "type": "git", + "url": "git+https://github.com/zhigang1992/telegram-mcp.git" + }, + "bugs": { + "url": "https://github.com/zhigang1992/telegram-mcp/issues" + }, + "homepage": "https://github.com/zhigang1992/telegram-mcp#readme", + "bin": { + "telegram-mcp": "./src/main.ts" + }, + "files": [ + "src", + "README.md" + ], "packageManager": "bun@1.2.16", "scripts": { "dev": "bun --watch ./src/main.ts", diff --git a/src/main.ts b/src/main.ts index 4d96e04..c55b153 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,3 +1,4 @@ +#!/usr/bin/env bun import { TelegramServer } from './server/telegram-server.js'; async function main() {