Supported Models
| Model | API String |
|---|---|
| Claude Opus 4.6 | claude-opus-4-6 |
| Claude Sonnet 4.6 | claude-sonnet-4-6 |
| Claude Haiku 4.5 | claude-haiku-4-5-20251001 |
Supported Tools
Every Nen desktop exposes thecomputer tool via GET /tools. The following actions are available:
| Action | Description | Key Parameters |
|---|---|---|
screenshot | Capture the current screen | — |
left_click | Click at coordinates | coordinate: [x, y] |
right_click | Right-click at coordinates | coordinate: [x, y] |
double_click | Double-click at coordinates | coordinate: [x, y] |
mouse_move | Move cursor without clicking | coordinate: [x, y] |
type | Type text at cursor position | text: string |
key | Press a key or combination | text: "Return", "ctrl+a" |
scroll | Scroll in a direction | coordinate, scroll_direction, scroll_amount |
wait | Pause for loading screens | — |
cursor_position | Get current cursor position | — |
Tool Format
Nen returns standard JSON Schema fromGET /tools. Convert to Anthropic’s format by mapping parameters → input_schema:
Getting Started
Usenen example create to scaffold a ready-to-run agent project:
Next Steps
OpenAI (GPT)
Same pattern with GPT models
Computer Tool Reference
Full reference for all computer actions