create_agent
Generate a new AutoGen agent with a unique name, type, system message, and LLM configuration to enable collaborative multi-agent conversations through the AutoGen MCP Server.
Instructions
Create a new AutoGen agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
llm_config | No | LLM configuration | |
name | Yes | Unique name for the agent | |
system_message | No | System message | |
type | Yes | Agent type |
Input Schema (JSON Schema)
{
"properties": {
"llm_config": {
"description": "LLM configuration",
"type": "object"
},
"name": {
"description": "Unique name for the agent",
"type": "string"
},
"system_message": {
"description": "System message",
"type": "string"
},
"type": {
"description": "Agent type",
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}