orgo_prompt
Launch AI agents to complete tasks on virtual computers using natural language instructions. The tool runs tasks asynchronously on Orgo's infrastructure and provides a URL to monitor progress.
Instructions
Send an AI agent to complete a task on an Orgo computer (fire-and-forget).
Launches a task asynchronously and returns immediately with a URL to monitor
progress. The agent runs on Orgo's hosted AI infrastructure, controlling
the computer with mouse, keyboard, and bash commands to complete the task.
This is ideal for long-running tasks where you don't want to wait for
completion. Check progress at the returned URL or use orgo_screenshot.
Args:
params (PromptInput): Input containing:
- prompt (str): Natural language instruction for the AI agent
- computer_id (Optional[str]): Existing computer ID. Creates new if omitted
- project_name (Optional[str]): Project for new computer (default: 'MCP Agents')
- computer_name (Optional[str]): Display name for new computer
- max_iterations (int): Max agent loops, 1-200 (default: 50)
Returns:
str: Markdown-formatted response containing:
- Computer ID for reference
- Task summary (truncated if long)
- URL to monitor progress at orgo.ai
- Instructions for checking status and cleanup
Examples:
- "Search for AI news and create a summary document"
-> Creates new computer, starts agent, returns URL immediately
- "Fill out the contact form with test data" (with computer_id)
-> Uses existing computer, starts agent on current screen state
Error Handling:
- Returns "Error: Resource not found..." if computer_id is invalid
- Returns "Error: Insufficient credits..." if account balance is low
- Returns "Error: Invalid API key..." if authentication fails
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |