dolly_camera_out
Move the camera farther from the subject to adjust perspective in 3D visualization scenes. Control camera distance for better viewing angles.
Instructions
Move the camera farther from the subject (dolly out)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | No | Optional amount to move farther (defaults to configured dolly speed) |
Implementation Reference
- server.js:1606-1630 (handler)The 'dolly_camera_out' tool handler is registered here. It moves the camera farther from the subject by sending a 'dollyCameraOut' command to the current session via WebSocket. The tool accepts an optional 'amount' parameter for distance and returns a text response confirming the movement.mcpServer.registerTool( 'dolly_camera_out', { title: 'Dolly Camera Out', description: 'Move the camera farther from the subject (dolly out)', inputSchema: { amount: z.number().positive().optional().describe('Optional amount to move farther (defaults to configured dolly speed)') } }, async ({ amount }) => { routeToCurrentSession({ type: 'dollyCameraOut', amount: amount }); return { content: [ { type: 'text', text: amount ? `Camera moved ${amount} units farther` : 'Camera moved farther' } ] }; } );