By default, the agent has access to bash, file read/write, and Python — the same tools available in Claude Code. You can restrict these and add custom tools via MCP servers.Documentation Index
Fetch the complete documentation index at: https://docs.opencomputer.dev/llms.txt
Use this file to discover all available pages before exploring further.
Default Tools
The agent runs with all Claude Code tools enabled. To restrict which tools the agent can use, passallowedTools:
MCP Servers
Model Context Protocol servers give the agent access to custom tools. MCP servers run inside the sandbox — the agent discovers available tools via the protocol. Pass MCP server configuration when starting the agent:McpServerConfig
| Field | Type | Required | Description |
|---|---|---|---|
command | string | Yes | Command to start the MCP server |
args | string[] | No | Command arguments |
env | object | No | Environment variables for the server process |
Example: Custom API Tool
System Prompt
Steer agent behavior with a custom system prompt:Permission Mode
Controls how the agent handles tool permissions:bypassPermissions — the agent can use any available tool without confirmation. This is safe because the agent runs inside an isolated sandbox VM.
Max Turns
Limit how many think → act → observe iterations the agent can perform:maxTurns to prevent runaway agents on simple tasks. The default is 50.