DASLAB

Daslab CLI

Install the CLI, authenticate from the terminal, and teach Claude Code to work with your Daslab scenes.

Using Claude, Claude Cowork, ChatGPT, Cursor, or another MCP client? MCP connector setup

Set up

Install the CLI

curl -fsSL https://releases.daslab.dev/install.sh | sh

macOS & Linux. Installs to ~/.local/bin/daslab.

daslab login

# or, scriptable
export DASLAB_API_KEY=dk_xxxxxxxxxxxx
daslab install claude

daslab install claude writes the MCP entry and installs the Claude Code /daslab skill. For static-header setup, get a key from Account → API key.

Discover what you have

Three steps to orient yourself in a scene:

# 1. list scenes in your home world
daslab --world call daslab_list_scenes

# 2. paste an id, see what's inside
SCENE=<paste-id-from-step-1>
daslab --scene-id $SCENE call daslab_get_scene_assets scene_id=$SCENE

# 3. list every tool that scene exposes (usually 100+)
daslab --scene-id $SCENE tools

Switch worlds & scenes

Quick reference

Full LLM-readable docs at daslab.run/cli.md · Source on GitHub.