Configure A2A servers
Handler can load configured A2A server definitions from two places:- global config at
$XDG_CONFIG_HOME/handler/servers.toml - repo-scoped config at
.handler/servers.toml
File format
url. Auth is optional.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Configure global or repo-scoped A2A server definitions for Handler.
$XDG_CONFIG_HOME/handler/servers.toml.handler/servers.tomlversion = 1
[servers.local]
url = "http://localhost:8000"
url. Auth is optional.
handler server add demo --url http://localhost:8000
handler server add demo --url http://localhost:8000 --repository
handler server list
handler server show demo
handler server validate
version = 1
[servers.demo]
url = "https://agent.example.com"
[servers.demo.auth]
type = "bearer"
env = "HANDLER_DEMO_TOKEN"
Was this page helpful?