Prerequisites
- Agent Stack installed (Quickstart)
- An existing agent implementation
- Python 3.12+ environment
How It Works
The Agent Stack server wraps your existing agent code and exposes it through the A2A protocol. Your agent logic stays exactly the same - you just add a thin server wrapper that handles:- Protocol translation (A2A)
- Auto-registration with Agent Stack
- Session management
- Extension support
Quick Start
1. Install the SDK
2. Create a Server Wrapper
Create a new file (e.g.,server.py) that wraps your existing agent:
3. Run Your Server
Enable auto-reload during development: Add
watchfiles to automatically restart your server when code changes: