computer_action_agent
Execute computer actions and tasks using an AI agent that operates safely and effectively through the OpenAI Agents MCP Server.
Instructions
Use an AI agent specialized in performing computer actions safely and effectively.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | The action or task you want to perform on the computer. |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "The action or task you want to perform on the computer.",
"title": "Action",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}