From agent-reachout
Local stdio MCP server for sending messages to a Telegram chat via bot. Enables Claude to reach out to users or agents on Telegram. Requires Telegram bot token and chat ID.
npx claudepluginhub vibe-with-me-tools/agent-reachout --plugin agent-reachoutAdd to your .mcp.json:
{
"mcpServers": {
"agent-reachout": {
"command": "bun",
"args": [
"run",
"--cwd",
"${CLAUDE_PLUGIN_ROOT}/server",
"start"
],
"env": {
"AGENT_REACHOUT_TELEGRAM_CHAT_ID": "${AGENT_REACHOUT_TELEGRAM_CHAT_ID}",
"AGENT_REACHOUT_TELEGRAM_BOT_TOKEN": "${AGENT_REACHOUT_TELEGRAM_BOT_TOKEN}"
}
}
}
}Replace placeholder values for: AGENT_REACHOUT_TELEGRAM_BOT_TOKEN
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
bunAGENT_REACHOUT_TELEGRAM_CHAT_ID=${AGENT_REACHOUT_TELEGRAM_CHAT_ID}AGENT_REACHOUT_TELEGRAM_BOT_TOKEN=${AGENT_REACHOUT_TELEGRAM_BOT_TOKEN}Share bugs, ideas, or general feedback.