dolly_camera_in
Move the camera closer to the subject in a 3D scene to adjust viewing distance and focus on specific elements.
Instructions
Move the camera closer to the subject (dolly in)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | No | Optional amount to move closer (defaults to configured dolly speed) |
Implementation Reference
- server.js:1580-1604 (registration)Tool registration and handler for dolly_camera_in - moves camera closer to subject with optional amount parametermcpServer.registerTool( 'dolly_camera_in', { title: 'Dolly Camera In', description: 'Move the camera closer to the subject (dolly in)', inputSchema: { amount: z.number().positive().optional().describe('Optional amount to move closer (defaults to configured dolly speed)') } }, async ({ amount }) => { routeToCurrentSession({ type: 'dollyCameraIn', amount: amount }); return { content: [ { type: 'text', text: amount ? `Camera moved ${amount} units closer` : 'Camera moved closer' } ] }; } );