plugins marketplace
← All plugins

breakpoints-adapter

v5.0.0

Route questions to domain experts instead of asking the current user

Claude Code1 MCP serverstdio

1.7kupdated 13 hours ago

Source

git clone https://github.com/a5c-ai/babysitter

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is packages/adapters/tasks/ inside the repository.

Layout

packages/adapters/tasks/
├── .claude-plugin/plugin.json
└── .mcp.json

MCP servers1

breakpoints-adapterstdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/dist/mcp/index.js

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

packages/adapters/tasks/.claude-plugin/plugin.json
{
  "name": "breakpoints-adapter",
  "version": "5.0.0",
  "description": "Route questions to domain experts instead of asking the current user",
  "mcpServers": {
    "breakpoints-adapter": {
      "command": "node",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/dist/mcp/index.js"
      ],
      "env": {}
    }
  }
}