Microsoft's multi-agent conversation framework. Build AI applications using multiple agents that converse to solve tasks.
pip install pyautogen
```json
{
"mcpServers": {
"autogen": {
"command": "npx",
"args": ["-y", "pip install pyautogen"]
}
}
}
```
initiate_chatcreate_agentregister_toolrun_conversationget_historyAutoGen is Microsoft's open-source framework for building multi-agent AI applications. Agents converse with each other and with humans to solve complex tasks. The AutoGen MCP server integrates AutoGen's conversation patterns with the MCP ecosystem, allowing agents to use MCP tools and interact with external services.
Language: Python
Category: Agent Frameworks