Skip to main content
Glama

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
NameRequiredDescriptionDefault
amountNoOptional 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 parameter
    mcpServer.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' } ] }; } );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aidenlab/hello3dmcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server