Skip to main content
Glama

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
NameRequiredDescriptionDefault
amountNoOptional amount to move farther (defaults to configured dolly speed)

Implementation Reference

  • 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' } ] }; } );

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