← All plugins
agent-reachout
v1.0.3Multi-provider notification plugin for Claude Code
Claude Code1 MCP serverstdio
by vibe-with-me-toolsMIT49updated 4 months ago
Source
git clone https://github.com/vibe-with-me-tools/agent-reachoutClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
agent-reachout/
├── .claude-plugin/plugin.json└── .mcp.json
MCP servers1
agent-reachoutstdio
- command
- bun
- args
- run --cwd ${CLAUDE_PLUGIN_ROOT}/server start
- env.AGENT_REACHOUT_TELEGRAM_BOT_TOKEN
- ${AGENT_REACHOUT_TELEGRAM_BOT_TOKEN}
- env.AGENT_REACHOUT_TELEGRAM_CHAT_ID
- ${AGENT_REACHOUT_TELEGRAM_CHAT_ID}
MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.
Manifests1
.claude-plugin/plugin.json
{
"name": "agent-reachout",
"version": "1.0.3",
"description": "Multi-provider notification plugin for Claude Code",
"author": {
"name": "vibe-with-me-tools",
"url": "https://github.com/vibe-with-me-tools"
},
"repository": "https://github.com/vibe-with-me-tools/agent-reachout",
"license": "MIT",
"keywords": [
"notifications",
"telegram",
"messaging",
"alerts",
"claude-code-plugin",
"llm-notifications"
],
"mcpServers": {
"agent-reachout": {
"command": "bun",
"args": [
"run",
"--cwd",
"${CLAUDE_PLUGIN_ROOT}/server",
"start"
],
"env": {
"AGENT_REACHOUT_TELEGRAM_BOT_TOKEN": "${AGENT_REACHOUT_TELEGRAM_BOT_TOKEN}",
"AGENT_REACHOUT_TELEGRAM_CHAT_ID": "${AGENT_REACHOUT_TELEGRAM_CHAT_ID}"
}
}
}
}