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.
Copy this JSON into your .mcp.json to enable this server
Add 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
Review these signals before enabling this server
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.
Server configuration and connection parameters
bunCommand-line arguments passed to the server process
Environment variables set when the server starts
AGENT_REACHOUT_TELEGRAM_CHAT_ID=${AGENT_REACHOUT_TELEGRAM_CHAT_ID}AGENT_REACHOUT_TELEGRAM_BOT_TOKEN=${AGENT_REACHOUT_TELEGRAM_BOT_TOKEN}Sensitive values you must provide — never committed to source control
npx claudepluginhub vibe-with-me-tools/agent-reachout --plugin agent-reachout