Add telegram channel plugin (#735)

Telegram messaging bridge for Claude Code. Runs a local MCP server that
connects to the Telegram Bot API via a user-created bot token.

Built-in access control: inbound messages are gated by an allowlist
(default: pairing mode), outbound sends are scoped to the same allowlist.
The /telegram:access skill manages pairing, allowlists, and policy.

Ships full source — server.ts runs locally via bun, started by the
.mcp.json command. First external_plugins entry to bundle source rather
than point at a hosted MCP endpoint.
This commit is contained in:
Kenneth Lien
2026-03-18 16:46:59 -07:00
committed by GitHub
parent 4796148ace
commit 1b33c1d9f9
11 changed files with 1520 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{
"mcpServers": {
"telegram": {
"command": "bun",
"args": ["run", "--cwd", "${CLAUDE_PLUGIN_ROOT}", "--shell=bun", "--silent", "start"]
}
}
}