run-superpower-command
Execute commands within the Superpowers framework to access advanced AI-driven capabilities like automated planning, debugging, and parallel development.
Instructions
Run a superpowers command
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | The command to run | |
| args | No | Arguments for the command |
Implementation Reference
- src/index.ts:68-79 (handler)The handler function for the `run-superpower-command` tool. Note that it currently just returns a confirmation string as a placeholder.
case 'run-superpower-command': { const { command, args = [] } = request.params.arguments as any // TODO: Implement command execution logic return { content: [ { type: 'text', text: `Command "${command}" executed with args: ${JSON.stringify(args)}`, }, ], } } - src/index.ts:16-35 (registration)The definition and registration of the `run-superpower-command` tool within the MCP server's tools list.
{ name: 'run-superpower-command', description: 'Run a superpowers command', inputSchema: { type: 'object', properties: { command: { type: 'string', description: 'The command to run', }, args: { type: 'array', items: { type: 'string' }, description: 'Arguments for the command', default: [], }, }, required: ['command'], }, },