main
Agent-to-Agent HTTP interface for MADA Orchestrator.
This module exposes the configured MADA planning agent as an A2A-compatible
service. The MADA agent card is available under the standard
/.well-known/agent-card.json path.
This is the server-side A2A entry point: use it when another A2A client or
agent needs to discover MADA and send work to MADA. The client-side support
for MADA calling other A2A agents lives in mada.core.a2a_client and is wired
through the a2a.agents configuration block.
A2AAuthMiddleware
Validate API keys for state-changing A2A requests.
Source code in src/mada/interfaces/a2a/main.py
A2AStartupError
MADAA2AExecutor
Bases: AgentExecutor
A2A SDK executor adapter for the shared MADA orchestrator service.
Source code in src/mada/interfaces/a2a/main.py
cancel(context, event_queue)
async
Report that MADA does not support cancelling in-flight orchestrator work.
execute(context, event_queue)
async
Execute one A2A request through the MADA orchestrator.
Source code in src/mada/interfaces/a2a/main.py
MADAA2AService
Manage the shared orchestrator instance used by the A2A API.
Source code in src/mada/interfaces/a2a/main.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | |
__init__(config, public_url, api_key=None, bearer_token=None)
Initialize the service wrapper for one shared orchestrator instance.
Source code in src/mada/interfaces/a2a/main.py
build_agent_card()
Build the public A2A agent card for this MADA service.
Source code in src/mada/interfaces/a2a/main.py
collect_response(message)
async
Collect a complete orchestrator response for a single A2A message.
Uses isolated sessions to avoid interference with the main orchestrator session, but does not persist conversation history across A2A requests by design (A2A protocol is stateless per-request).
Source code in src/mada/interfaces/a2a/main.py
ensure_started()
async
Lazily start the orchestrator once across concurrent requests.
Source code in src/mada/interfaces/a2a/main.py
shutdown()
async
Shut down the shared orchestrator if it has been initialized.
startup()
async
Start and initialize the orchestrator used to serve A2A requests.
Source code in src/mada/interfaces/a2a/main.py
stream_response(message)
async
Yield the authoritative orchestrator response for a single A2A message.
Magentic can emit replacement/error control chunks after provisional text. A2A string streams have no retract operation, so Magentic output is buffered and yielded only after its authoritative content is known. Other orchestration modes stream chunks immediately.
Uses isolated sessions to avoid interference with the main orchestrator session, but does not persist conversation history across A2A requests by design (A2A protocol is stateless per-request).
Source code in src/mada/interfaces/a2a/main.py
validate_api_key(authorization, x_api_key)
Validate the configured API key against request headers.
Source code in src/mada/interfaces/a2a/main.py
a2a_entrypoint(host, port, public_url, api_key, bearer_token, config_file)
Load config and start the A2A API server.
Source code in src/mada/interfaces/a2a/main.py
create_a2a_app(config, public_url, api_key=None, bearer_token=None)
Build and return an A2A SDK app backed by the configured MADA orchestrator.
Source code in src/mada/interfaces/a2a/main.py
main(host, port, public_url, api_key, bearer_token, config_file)
Run MADA Orchestrator as an A2A agent.
Source code in src/mada/interfaces/a2a/main.py
run_a2a(config, host, port, public_url=None, api_key=None, bearer_token=None)
Launch the A2A server.