Skip to main content
The Orgo MCP server gives any Model Context Protocol client direct control of your cloud computers: spin up a Linux desktop, drive its browser, run shell commands, and read the screen back. Its tools are generated from the same openapi.json that produces this site’s API Reference, so the two can never disagree. 43 tools, one per endpoint, over stdio.

Install

Get a key at orgo.ai/workspaces → Settings → API Keys, then restart your client. Config lives at ~/.cursor/mcp.json for Cursor, .vscode/mcp.json for VS Code, ~/.codeium/windsurf/mcp_config.json for Windsurf, and ~/Library/Application Support/Claude/claude_desktop_config.json for Claude Desktop on macOS.
Already using the CLI? Run orgo login once and drop the env block entirely. The server reads the same ~/.orgo/credentials.json, so your key never has to sit in a config file.

Try it

The first prompt runs orgo_create_computer, then orgo_execute_bash, then orgo_get_screenshot. Screenshots come back as images the model can actually see, not links.

Tools

43 tools, one per API operation, named after its operationId. createComputer becomes orgo_create_computer.
orgo_get_template_schema orgo_list_templates orgo_publish_template orgo_validate_template orgo_list_curated_templates orgo_list_curated_template_versions orgo_list_template_versions orgo_get_template orgo_delete_template orgo_build_template orgo_get_build_status orgo_cancel_build orgo_stream_build_events orgo_test_run_template orgo_stop_template_run
Group names are the spec’s own tags, so ORGO_TAGS="Workspaces,Computers" narrows the surface using the same words the API Reference uses. Set it when a client’s tool picker starts guessing.

Configuration

Nothing here is required. ORGO_API_KEY is the only variable most setups ever set.

Security

An sk_live_ key is account-wide by default, and orgo_execute_bash and orgo_execute_python run arbitrary commands on a live machine. Leave your client’s tool confirmation on. For a narrower blast radius, create a workspace-scoped key under Settings → API Keys, or set ORGO_READ_ONLY=true to register only the 15 read tools.

How it works

Tools come from the spec. Descriptions, types, enums, defaults and required fields are read straight out of it, so orgo_create_computer already knows ram is one of 4, 8, 16, 32 or 64 without anyone writing that down twice. Path, query and body parameters flatten into one argument list, so a call reads orgo_resize_computer({ id, mem_gb }) rather than nesting a body. Annotations follow the HTTP method: the 15 GET tools are read-only, and every write is marked destructive, because orgo_execute_bash cannot promise otherwise. Responses are shaped to it too. Only the fields the spec declares survive, which keeps internal state the docs never promise out of the model’s context. A schema matching none of the keys in hand is treated as describing something else, so the payload passes through untouched instead of being emptied. Spec drift costs verbosity, never data. Set ORGO_RAW=1 to turn shaping off. Failures retry only when that is provably safe. A 5xx or a dropped connection is retried with doubling backoff, but only for the methods the spec marks idempotent. orgo_execute_bash and orgo_mouse_click get exactly one attempt, because running either twice is worse than failing once. The spec is loaded fresh. In order, first one wins:
  1. Cache - $XDG_CACHE_HOME/orgo-mcp/openapi.json, if fetched within ORGO_SPEC_MAX_AGE_MS.
  2. Network - ORGO_SPEC_URL, 5 second timeout, written back to the cache.
  3. Stale cache - whatever was last fetched.
  4. Bundled snapshot - shipped in the npm package.
A normal start is instant and offline. A start after the cache expires picks up whatever shipped in the API that day. A machine with no network still works.

Troubleshooting

Run the server directly to see what it thinks. It prints one line to stderr, then waits for JSON-RPC on stdin:
That line names the tool count, the API version and which spec source won, which answers most setup questions on its own. Silence on stdout is correct; that channel carries the protocol.
npm ships npx.cmd, and Node’s spawn will not resolve a .cmd without a shell. Wrap it:
Check the key on its own:
If that works but the server does not, your client is not forwarding env. Pass the key inline with claude mcp add -e instead.
Fully quit and relaunch. Most clients read MCP config only at startup, and Claude Desktop needs a real quit rather than closing the window. Then check ORGO_READ_ONLY and ORGO_TAGS, which reduce the tool list by design. Claude Desktop logs to ~/Library/Logs/Claude/mcp-server-orgo.log on macOS.

Next steps

API Reference

The same 43 operations, with full request and response schemas.

CLI

Drive the same computers from your own terminal.

Claude Code skill

Teach Claude when to reach for a computer in the first place.