https://github.com/google-a2a/a2a-python
Official Python SDK for the Agent2Agent (A2A) Protocol
https://github.com/google-a2a/a2a-python
agents generative-ai google
Last synced: 7 months ago
JSON representation
Official Python SDK for the Agent2Agent (A2A) Protocol
- Host: GitHub
- URL: https://github.com/google-a2a/a2a-python
- Owner: google-a2a
- License: apache-2.0
- Created: 2025-05-09T05:42:15.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-06-10T22:05:11.000Z (8 months ago)
- Last Synced: 2025-06-11T09:26:26.785Z (8 months ago)
- Topics: agents, generative-ai, google
- Language: Python
- Homepage: https://goo.gle/a2a-python-sdk
- Size: 908 KB
- Stars: 439
- Watchers: 14
- Forks: 87
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-a2a - a2a-python - python?style=social)](https://github.com/google/a2a-python) - **Official** Python SDK for running agentic applications as A2A servers following the Agent2Agent Protocol. (⚙️ Implementations & Libraries)
- awesome-adk - a2a-python - A2A Python SDK. (Related Repositories)
- awesome-mcp - google-a2a/a2a-python - Official Python SDK for building and running agentic applications as A2AServers following the Agent2Agent (A2A) Protocol. (MCP Frameworks and libraries / Python)
README
# A2A Python SDK
[](LICENSE)


A Python library that helps run agentic applications as A2AServers following the Agent2Agent (A2A) Protocol.
## Installation
You can install the A2A SDK using either `uv` or `pip`.
## Prerequisites
- Python 3.10+
- `uv` (optional, but recommended) or `pip`
### Using `uv`
When you're working within a uv project or a virtual environment managed by uv, the preferred way to add packages is using uv add.
```bash
uv add a2a-sdk
```
### Using `pip`
If you prefer to use pip, the standard Python package installer, you can install `a2a-sdk` as follows
```bash
pip install a2a-sdk
```
## Examples
### [Helloworld Example](https://github.com/google-a2a/a2a-samples/tree/main/samples/python/agents/helloworld)
1. Run Remote Agent
```bash
git clone https://github.com/google-a2a/a2a-samples.git
cd a2a-samples/samples/python/agents/helloworld
uv run .
```
2. In another terminal, run the client
```bash
cd a2a-samples/samples/python/agents/helloworld
uv run test_client.py
```
You can also find more Python samples [here](https://github.com/google-a2a/a2a-samples/tree/main/samples/python) and JavaScript samples [here](https://github.com/google-a2a/a2a-samples/tree/main/samples/js).
## License
This project is licensed under the terms of the [Apache 2.0 License](https://raw.githubusercontent.com/google-a2a/a2a-python/refs/heads/main/LICENSE).
## Contributing
See [CONTRIBUTING.md](https://github.com/google-a2a/a2a-python/blob/main/CONTRIBUTING.md) for contribution guidelines.