Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getnen.ai/llms.txt

Use this file to discover all available pages before exploring further.

Computer use infrastructure for any AI agent

Nen provides isolated Windows desktops with computer tools that any AI agent can call. Point any agent framework — Claude, GPT, or raw HTTP — at the tools endpoint and start controlling the desktop in seconds.
import httpx

DESKTOP_ID = "dsk_abc123def456"
BASE_URL = f"https://desktop.api.getnen.ai/desktops/{DESKTOP_ID}"
headers = {"Authorization": "Bearer your_api_key"}

# Discover available tools
tools = httpx.get(f"{BASE_URL}/tools", headers=headers).json()

# Take a screenshot
result = httpx.post(f"{BASE_URL}/execute", json={
    "action": {"tool": "computer", "action": "screenshot", "params": {}}
}, headers=headers).json()

# Click a button
result = httpx.post(f"{BASE_URL}/execute", json={
    "action": {"tool": "computer", "action": "left_click", "params": {"coordinate": [500, 300]}}
}, headers=headers).json()

Two ways to use Nen

Computer-Use Desktops

You own the agent loop. Nen is the desktop + tools API. Use any LLM, any framework, any language.

Managed Workflows

Nen handles orchestration. You write Python run() functions using the Nen SDK, and Nen executes them in a managed desktop.
Cloud DesktopsManaged Workflows
Agent loopYoursNen’s
LanguageAny (computer tools over HTTP)Python (Nen SDK)
DesktopYou manage lifecycleNen manages lifecycle
LLMYour choiceConfigured per-workflow
Best forFull control over the agent loopHigh-level task orchestration

Get Started

Quickstart

Run your first agent loop in 5 minutes.

Supported Tools

See all available tools and supported models.