KosmoKrator

productivity

Lambda Labs CLI for Coding Agents

Use the Lambda Labs CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 6 read 1 write API key auth

Lambda Labs CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. The Lambda Labs CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Lambda Labs CLI for Coding Agents
kosmokrator integrations:configure lambda-labs --set api_key="$LAMBDA_LABS_API_KEY" --enable --read allow --write ask --json
kosmo integrations:call lambda-labs.lambda_labs_list_instances '{}' --json

Discovery Before Execution

Agents and scripts can inspect Lambda Labs docs and schemas before choosing a function.

kosmo integrations:docs lambda-labs --json
kosmo integrations:docs lambda-labs.lambda_labs_list_instances --json
kosmo integrations:schema lambda-labs.lambda_labs_list_instances --json
kosmo integrations:search "Lambda Labs" --json
kosmo integrations:list --json

Useful Lambda Labs CLI Functions

FunctionTypeParametersDescription
lambda-labs.lambda_labs_list_instances Read none List all GPU instances in the Lambda Labs account. Returns instance IDs, names, status, IP addresses, and GPU configuration.
lambda-labs.lambda_labs_get_instance Read id Get details for a specific Lambda Labs GPU instance by ID. Returns full instance information including status, IP, region, and GPU type.
lambda-labs.lambda_labs_launch_instance Write name, region_name, instance_type, ssh_key_ids, image_id, quantity Launch a new GPU instance on Lambda Labs. Requires a region name, instance type, SSH key IDs, and optionally a name and image.
lambda-labs.lambda_labs_list_ssh_keys Read none List all SSH keys registered in the Lambda Labs account. Returns key IDs, names, and public key fingerprints.
lambda-labs.lambda_labs_list_instance_types Read none List all available GPU instance types on Lambda Labs. Returns specs including GPU model, VRAM, vCPUs, memory, and pricing.
lambda-labs.lambda_labs_list_images Read none List all available machine images on Lambda Labs. Returns image IDs, names, and descriptions for OS templates and custom images.
lambda-labs.lambda_labs_get_current_user Read none Get information about the current authenticated Lambda Labs user, including email, user ID, and account status.

Automation Notes

Related Lambda Labs CLI Pages