execute_agent
Activate a specific AI agent on DollhouseMCP to achieve a defined goal by executing the desired persona and task.
Instructions
Execute an agent element with a specific goal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
goal | Yes | The goal for the agent to achieve | |
name | Yes | The agent name to execute |
Input Schema (JSON Schema)
{
"properties": {
"goal": {
"description": "The goal for the agent to achieve",
"type": "string"
},
"name": {
"description": "The agent name to execute",
"type": "string"
}
},
"required": [
"name",
"goal"
],
"type": "object"
}