A2A Connector 2.0 Reference
Anypoint Connector for Agent2Agent (A2A) (A2A Connector) provides A2A protocol support for LLM agents, enabling your agents to talk to other agents.
Configurations
Client
The application or AI system that initiates requests and consumes services offered by A2A servers. This allows Mule apps to act as A2A brokers between non A2A “head” agents and A2A “node” agents.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name |
String |
Name for this configuration. Connectors reference the configuration with this name. |
x |
|
Connection |
The connection types to provide to this configuration. |
x |
||
Name |
String |
ID used to reference this configuration. |
x |
|
Expiration Policy |
Configures the minimum amount of time that a dynamic configuration instance can remain idle before Mule considers it eligible for expiration. |
Connection Types
Http Json Client Connection
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Agent Url |
String |
Base URL for the target A2A agent, used for agent card discovery via |
x |
|
Request Timeout |
Number |
Sets the duration to wait for server responses before timing out requests. |
30 |
|
Request Timeout Unit |
Enumeration, one of:
|
Time unit for the Request Timeout field. |
SECONDS |
|
Authentication |
HttpRequestAuthentication |
Authentication method used when sending requests to the target A2A agent. |
||
Default Headers |
Object |
Default headers. |
||
Tls Context |
Configures TLS for secure communication with the target A2A agent. |
|||
Reconnection |
When the application is deployed, a connectivity test is performed on all connectors. If set to true, deployment fails if the test doesn’t pass after exhausting the associated reconnection strategy. |
Jsonrpc Client Connection
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Agent Url |
String |
Base URL for the target A2A agent, used for agent card discovery via |
x |
|
Request Timeout |
Number |
Sets the duration to wait for server responses before timing out requests. |
30 |
|
Request Timeout Unit |
Enumeration, one of:
|
Time unit for the Request Timeout field. |
SECONDS |
|
Authentication |
HttpRequestAuthentication |
Authentication method used when sending requests to the target A2A agent. |
||
Default Headers |
Object |
Default headers. |
||
Tls Context |
Configures TLS for secure communication with the target A2A agent. |
|||
Reconnection |
When the application is deployed, a connectivity test is performed on all connectors. If set to true, deployment fails if the test doesn’t pass after exhausting the associated reconnection strategy. |
Server
The A2A server acts as a remote agent that exposes an HTTP(S) endpoint and implements the A2A protocol methods for interacting with other AI agents. This allows Mule-based agents to receive and respond to A2A protocol-compliant requests.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name |
String |
Name for this configuration. Connectors reference the configuration with this name. |
x |
|
Connection |
The connection types to provide to this configuration. |
x |
||
Name |
String |
ID used to reference this configuration. |
x |
|
Expiration Policy |
Configures the minimum amount of time that a dynamic configuration instance can remain idle before Mule considers it eligible for expiration. |
|||
Card Json |
String |
Agent card as a JSON string. |
||
Card Path |
String |
The absolute path of a JSON file to load the agent card. |
||
Task History Enabled |
Boolean |
Set to |
true |
|
Default Max History Length |
Number |
Maximum number of task history objects to store. |
||
Task Repository Object Store |
ObjectStore |
Object store used to persist tasks and their history. If not set, the default object store is used. |
Connection Types
Server Connection
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Listener Config |
String |
Reference to the |
x |
|
Agent Path |
String |
Base HTTP path for this agent. The agent card is served at |
x |
|
Interfaces |
Array of Interface |
Interfaces the agent supports. |
x |
|
Tls Context Ref |
String |
Reference to the TLS context used to secure the inbound endpoint. |
||
Reconnection |
When the application is deployed, a connectivity test is performed on all connectors. If set to true, deployment fails if the test doesn’t pass after exhausting the associated reconnection strategy. |
A2A Client - Cancel Task
<a2a:cancel-task>
Cancels the task specified by its unique identifier. It’s used to stop a previously initiated task.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Task Id |
Any |
Unique identifier for the task. |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - Create Push Notification Config
<a2a:create-push-notification-config>
Creates a push notification configuration for a specified task.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Task Push Notification Config |
Any |
Associates a push notification configuration with a specific task. |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - Delete Push Notification Config
<a2a:delete-push-notification-config>
Deletes an associated push notification configuration for a task.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Get Push Config Params |
Any |
Object for fetching the push notification configuration for a task. |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - Get Card
<a2a:get-card>
Gets the agent card.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Use Extended Card |
Boolean |
When true, fetches the authenticated extended agent card instead of the normal agent card. |
false |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - Get Push Notification Config
<a2a:get-push-notification-config>
Retrieves the current push notification configuration for a specified task.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Get Push Config Params |
Any |
Object for fetching the push notification configuration for a task. |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - Get Task
<a2a:get-task>
Retrieves information about a task based on a provided query. This enables you to fetch the status or details of a task from another agent.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Task Query |
Any |
Query object identifying the task to retrieve (TaskQueryParams schema). |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - List Push Notification Configs
<a2a:list-push-notification-configs>
Retrieves the associated push notification configurations for a specified task.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
List Push Config Params |
Any |
Object for listing the push notification configurations for a task. |
x |
|
Output Mime Type |
String |
The MIME type of the payload that this operation outputs. |
||
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Streaming Strategy |
|
Configures whether repeatable streams are used, and their behavior. |
||
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - List Tasks
<a2a:list-tasks>
Retrieves a list of tasks from the target agent.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
List Tasks Params |
Any |
Object for listing tasks from the target agent. |
x |
|
Output Mime Type |
String |
The MIME type of the payload that this operation outputs. |
||
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Streaming Strategy |
|
Configures whether repeatable streams are used, and their behavior. |
||
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Client - Send Message
<a2a:send-message>
Sends a message.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Message |
Any |
Message to send. |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
Throws
-
A2A:CONNECTIVITY
-
A2A:CONTENT_TYPE_UNSUPPORTED
-
A2A:EXTENSION_SUPPORT_REQUIRED
-
A2A:INTERNAL_ERROR
-
A2A:INVALID_AGENT_RESPONSE
-
A2A:INVALID_PARAMS
-
A2A:INVALID_REQUEST
-
A2A:PARSE_ERROR
-
A2A:PUSH_NOTIFICATION_UNSUPPORTED
-
A2A:RETRY_EXHAUSTED
-
A2A:SERVER_ERROR
-
A2A:TASK_NOT_FOUND
-
A2A:UNAUTHORIZED
-
A2A:UNSUPPORTED_OPERATION
-
A2A:VERSION_UNSUPPORTED
A2A Client - Send Stream Message
<a2a:send-stream-message>
Sends a message to the A2A agent and establishes an SSE streaming connection to receive real-time status updates, artifacts, and error notifications as the agent processes the request.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Stream Message |
Any |
Message to send (MessageSendParams schema). |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
Throws
-
A2A:CONNECTIVITY
-
A2A:CONTENT_TYPE_UNSUPPORTED
-
A2A:EXTENSION_SUPPORT_REQUIRED
-
A2A:INTERNAL_ERROR
-
A2A:INVALID_AGENT_RESPONSE
-
A2A:INVALID_PARAMS
-
A2A:INVALID_REQUEST
-
A2A:PARSE_ERROR
-
A2A:PUSH_NOTIFICATION_UNSUPPORTED
-
A2A:RETRY_EXHAUSTED
-
A2A:SERVER_ERROR
-
A2A:TASK_NOT_FOUND
-
A2A:UNAUTHORIZED
-
A2A:UNSUPPORTED_OPERATION
-
A2A:VERSION_UNSUPPORTED
A2A Client - Subscribe To Task
<a2a:subscribe-to-task>
Reconnects to an existing SSE streaming session for an ongoing task to receive buffered events and continue receiving real-time updates from where the connection was lost.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Task Id Params |
Any |
Task ID to resubscribe to (TaskIdParams schema). |
x |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Additional Properties |
Object |
Additional properties to include with the request. Use this field to specify custom key-value pairs that are sent with the A2A connector request. This field is optional and null-safe. |
||
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
Throws
-
A2A:CONNECTIVITY
-
A2A:CONTENT_TYPE_UNSUPPORTED
-
A2A:EXTENSION_SUPPORT_REQUIRED
-
A2A:INTERNAL_ERROR
-
A2A:INVALID_AGENT_RESPONSE
-
A2A:INVALID_PARAMS
-
A2A:INVALID_REQUEST
-
A2A:PARSE_ERROR
-
A2A:PUSH_NOTIFICATION_UNSUPPORTED
-
A2A:RETRY_EXHAUSTED
-
A2A:SERVER_ERROR
-
A2A:TASK_NOT_FOUND
-
A2A:UNAUTHORIZED
-
A2A:UNSUPPORTED_OPERATION
-
A2A:VERSION_UNSUPPORTED
A2A Server - Get Tasks
<a2a:get-tasks>
Retrieves a batch of tasks from the server’s internal task store. Resolved tasks are returned in tasks; task IDs that the store doesn’t have are reported in nonExistentTaskIds. Genuine failures (such as a corrupt store entry, an ObjectStore IO failure, or an unexpected serialization error) are surfaced as A2A errors rather than reported as nonexistent. This is a blocking operation because each lookup performs synchronous IO against the underlying ObjectStore (often Object Store v2). Lookups run sequentially on the calling thread to avoid uncontrolled fan-out against a remote, rate-limited store. The primary use case is resolving referenceTaskIds on incoming A2A messages so the agent flow has the full context of referenced tasks.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Task IDs |
Array of String |
Task identifiers to retrieve. |
#[payload] |
|
History Length |
Number |
Maximum number of most recent history entries to include per task. |
0 |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Server - Get Tasks By Context
<a2a:get-tasks-by-context>
Retrieves every task belonging to a contextId, oldest first, from the server’s internal task store. A2A 1.0.0 treats a contextId as a conversational session that groups multiple task and message objects, so this operation lets an agent flow recover that session by reading all tasks recorded for the context in a single call. The full ordered task list is returned and isn’t paged, because the underlying object store offers no ranged or cursored read: the per-context index loads as a single entry regardless. Tasks are never truncated, because dropping tasks would give the agent an incomplete conversation. Use the History Length field to bound the message history embedded within each task. Lookups are synchronous IO against the underlying object store, resolved sequentially to avoid uncontrolled fan-out against a remote, rate-limited store. Genuine internal failures (such as an object store IO error or corrupt stored task JSON) are logged server-side with full detail and surfaced as a generic A2A:INTERNAL_ERROR. A blank or unknown contextId returns an empty task list rather than an error.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Context Id |
String |
The conversational context whose tasks are retrieved. |
x |
|
History Length |
Number |
Maximum number of most recent history entries to include per task. Defaults to all history, for full context reconstruction. |
2147483647 |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Target Variable |
String |
Name of the variable that stores the operation’s output. |
||
Target Value |
String |
Expression that evaluates the operation’s output. The outcome of the expression is stored in the Target Variable field. |
#[payload] |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Server - Send Push Notification
<a2a:send-push-notification>
Sends a push notification with the provided streaming event payload. This operation allows sending asynchronous updates at various stages of a task, not just at the end. The body sent to the push URL is the StreamResponse JSON, as specified in A2A spec section 4.3.3. This is a non-blocking operation that uses a completion callback for asynchronous result handling.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Notification Message |
Any |
JSON for a single streaming event (task, message, status update, or artifact update). |
#[payload] |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Server - Set Task Metadata
<a2a:set-task-metadata>
Fully replaces (does not merge) the task’s metadata. Pass an empty JSON object ({}) to clear it. This operation doesn’t dispatch an event; subsequent Get Task or blocking responses return whatever metadata the persisted task carries.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Task Id |
String |
The ID of the task whose metadata is being replaced. |
x |
|
Metadata |
Any |
The JSON object to persist as task-level metadata. Pass |
#[payload] |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Server - Update Task Artifact
<a2a:update-task-artifact>
Updates a task artifact and dispatches the update through the event dispatcher. Artifacts are progress updates and never close responses. An unknown task ID returns A2A:TASK_NOT_FOUND.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Artifact Update Content |
Any |
TaskArtifactUpdateEvent content following A2A specification. |
#[payload] |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Server - Update Task Status
<a2a:update-task-status>
Updates a task status and dispatches the update through the event dispatcher. Rejects transitions out of terminal states (A2A spec section 3.1.1). An unknown task ID returns A2A:TASK_NOT_FOUND.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Status Update Content |
Any |
TaskStatusUpdateEvent content following A2A specification. |
#[payload] |
|
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Error Mappings |
Array of Error Mapping |
Set of error mappings. |
||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
A2A Server - On Async Request Listener
<a2a:on-async-request-listener>
Lets the agent flow customize the initial Task emitted for streaming (Send Stream Message) and non-blocking (Send Message with returnImmediately=true) requests. The flow receives MessageSendParams as the payload (with taskId and contextId as attributes) and must return a Task, which is used to seed initial state, attach artifacts, or gate the request. Returning a terminal or interrupted Task, or raising an error, rejects the request up front. A missing or unparseable Task is a server-side fault: the client sees A2A:INTERNAL_ERROR with a generic message, while the location and parse detail are logged server-side. Push notification configuration is handled by the A2A Server - On Push Notification Set Listener source, not this listener.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Primary Node Only |
Boolean |
Determines whether to execute this source on only the primary node when running Mule instances in a cluster. |
||
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Redelivery Policy |
Defines a policy for processing the redelivery of the same message. |
|||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
|||
Task |
Binary |
|
#[payload] |
A2A Server - On Push Notification Set Listener
<a2a:push-notification-config-listener>
Validates the push notification configuration before routing the request to the Task Listener source.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Primary Node Only |
Boolean |
Determines whether to execute this source on only the primary node when running Mule instances in a cluster. |
||
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Redelivery Policy |
Defines a policy for processing the redelivery of the same message. |
|||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
|||
Additional Headers |
Object |
Additional HTTP headers to include with each request. |
||
Authentication |
HttpRequestAuthentication |
Authentication method used when sending push notification requests. |
||
Push notification request timeout |
Number |
Duration to wait for a push notification request to complete before timing out. |
60 |
|
Request Timeout Unit |
Enumeration, one of:
|
Time unit for the Push notification request timeout field. |
SECONDS |
|
Proxy Config |
HttpProxyConfig |
Proxy configuration. |
A2A Server - Task Authorizer Listener
<a2a:task-authorizer-listener>
A2A Server task authorizer listener. Gates every auth-required operation before it executes. The flow’s payload shape depends on the operation. For List Tasks, the flow receives a JSON array of candidate {taskId, contextId} pairs for the current page and must return a JSON array of the authorized subset (each entry with taskId and contextId); an empty array denies the entire page. For other auth-required operations (Get Task, Cancel Task, Subscribe To Task, and the push notification config Get, List, and Delete operations), the flow receives the raw JSON-RPC request params as the payload. Successful completion of the flow authorizes the request; the returned payload isn’t inspected. To deny a request, raise an error from the flow, which is mapped to UNAUTHORIZED. The current operation is available on attributes.operationName.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Primary Node Only |
Boolean |
Determines whether to execute this source on only the primary node when running Mule instances in a cluster. |
||
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Redelivery Policy |
Defines a policy for processing the redelivery of the same message. |
|||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
|||
Authorized Tasks |
Array of Any |
For List Tasks, the authorized subset of tasks the flow returns (each entry with |
A2A Server - Task Listener
<a2a:task-listener>
Allows a Mule application to listen for and receive incoming A2A protocol-compliant requests from other AI agents, enabling the Mule-based agent to act as an A2A server and respond to tasks.
Parameters
| Name | Type | Description | Default Value | Required |
|---|---|---|---|---|
Configuration |
String |
Name of the configuration to use. |
x |
|
Primary Node Only |
Boolean |
Determines whether to execute this source on only the primary node when running Mule instances in a cluster. |
||
Config Ref |
ConfigurationProvider |
Name of the configuration to use to execute this component. |
x |
|
Redelivery Policy |
Defines a policy for processing the redelivery of the same message. |
|||
Reconnection Strategy |
Retry strategy in case of connectivity errors. |
Types
TLS
Configures TLS to provide secure communications for the Mule app.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Enabled Protocols |
String |
Comma-separated list of protocols enabled for this context. |
||
Enabled Cipher Suites |
String |
Comma-separated list of cipher suites enabled for this context. |
||
Trust Store |
Configures the TLS truststore. |
|||
Key Store |
Configures the TLS keystore. |
|||
Revocation Check |
Configures a revocation checking mechanism. |
Truststore
Configures the truststore for TLS.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Path |
String |
Path to the truststore. Mule resolves the path relative to the current classpath and file system. |
||
Password |
String |
Password used to protect the truststore. |
||
Type |
String |
Type of store. |
||
Algorithm |
String |
Encryption algorithm that the truststore uses. |
||
Insecure |
Boolean |
If |
Keystore
Configures the keystore for the TLS protocol. The keystore you generate contains a private key and a public certificate.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Path |
String |
Path to the keystore. Mule resolves the path relative to the current classpath and file system. |
||
Type |
String |
Type of store. |
||
Alias |
String |
Alias of the key to use when the keystore contains multiple private keys. By default, Mule uses the first key in the file. |
||
Key Password |
String |
Password used to protect the private key. |
||
Password |
String |
Password used to protect the keystore. |
||
Algorithm |
String |
Encryption algorithm that the keystore uses. |
Standard Revocation Check
Configures standard revocation checks for TLS certificates.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Only End Entities |
Boolean |
Which elements to verify in the certificate chain:
Verify only the last element in the certificate chain.
Verify all elements in the certificate chain. |
||
Prefer Crls |
Boolean |
How to check certificate validity:
Check the Certification Revocation List (CRL) for certificate validity.
Use the Online Certificate Status Protocol (OCSP) to check certificate validity. |
||
No Fallback |
Boolean |
Whether to use the secondary method to check certificate validity:
Use the method that wasn’t specified in the Prefer Crls field (the secondary method) to check certificate validity.
Don’t use the secondary method to check certificate validity. |
||
Soft Fail |
Boolean |
What to do if the revocation server can’t be reached or is busy:
Avoid verification failure.
Allow the verification to fail. |
Custom OCSP Responder
Configures a custom OCSP responder for certification revocation checks.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Url |
String |
URL of the OCSP responder. |
||
Cert Alias |
String |
Alias of the signing certificate for the OCSP response. If specified, the alias must be in the truststore. |
CRL File
Specifies the location of the certification revocation list (CRL) file.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Path |
String |
Path to the CRL file. |
Reconnection
Configures a reconnection strategy for an operation.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Fails Deployment |
Boolean |
When the application is deployed, a connectivity test is performed on all connectors. If set to true, deployment fails if the test doesn’t pass after exhausting the associated reconnection strategy. |
||
Reconnection Strategy |
Reconnection strategy to use. |
Reconnect
Configures a standard reconnection strategy, which specifies how often to reconnect and how many reconnection attempts the connector source or operation can make.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Frequency |
Number |
How often to attempt to reconnect, in milliseconds. |
||
Blocking |
Boolean |
If |
true |
|
Count |
Number |
How many reconnection attempts the Mule app can make. |
Reconnect Forever
Configures a forever reconnection strategy by which the connector source or operation attempts to reconnect at a specified frequency for as long as the Mule app runs.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Frequency |
Number |
How often to attempt to reconnect, in milliseconds. |
||
Blocking |
Boolean |
If |
true |
Expiration Policy
Configures an expiration policy strategy.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Max Idle Time |
Number |
Configures the maximum amount of time that a dynamic configuration instance can remain idle before Mule considers it eligible for expiration. |
||
Time Unit |
Enumeration, one of:
|
Time unit for the Max Idle Time field. |
Response Attributes
In A2A Connector 1.0 and later, this represents the HTTP response attributes for an A2A request. This type encapsulates HTTP response metadata, including status code, headers, and reason phrase, that are sent as part of an A2A protocol response.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Status Code |
Number |
HTTP status code of the response. |
x |
|
Headers |
Object |
Map of HTTP headers in the message. |
x |
|
Reason Phrase |
String |
HTTP reason phrase of the response. |
Error Mapping
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Source |
Enumeration, one of:
|
Type of error to map to the target error type. |
||
Target |
String |
Custom error type to map the source error to. |
x |
Repeatable In Memory Iterable
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Initial Buffer Size |
Number |
Number of instances initially allowed in memory to consume the stream and provide random access to it. If the stream contains more data than the buffer can hold, the buffer expands according to the Buffer Size Increment field, up to the Max Buffer Size limit. The default is 100 instances. |
||
Buffer Size Increment |
Number |
By how much the buffer size expands if it exceeds its initial size. A value of |
||
Max Buffer Size |
Number |
Maximum amount of memory used. If exceeded, a STREAM_MAXIMUM_SIZE_EXCEEDED error is raised. A value of |
Repeatable File Store Iterable
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
In Memory Objects |
Number |
Maximum number of instances kept in memory. If more are required, the content is buffered on disk. |
||
Buffer Unit |
Enumeration, one of:
|
Unit in which In Memory Objects is expressed. |
Streaming Response Attributes
In A2A Connector 1.0 and later, this represents the HTTP response attributes for A2A streaming operations (SSE). This specialized type extends Response Attributes with streaming-specific metadata, including information about final events received during the SSE session. This final event information is not related to the A2A protocol final event, but the connector’s.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Final Event Found |
Boolean |
Whether a final event was found during SSE session. |
false |
|
Status Code |
Number |
HTTP status code of the response. |
x |
|
Headers |
Object |
Map of HTTP headers in the message. |
x |
|
Reason Phrase |
String |
HTTP reason phrase of the response. |
Interface
One entry under <a2a:interfaces>: a protocol binding that specifies a transport and a path segment appended to the connection’s agent path for that binding. For example, with agent path /my-agent and path /rpc, JSON-RPC is exposed at /my-agent/rpc/. Use <a2a:interface protocol="JSONRPC" path="/rpc"/>.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Protocol |
Enumeration, one of:
|
Protocol binding (transport) that the interface uses. |
x |
|
Path |
String |
Path segment appended to the connection’s agent path for this binding. |
x |
Request Attributes
In A2A Connector 1.0 and later, this represents the HTTP request attributes for an A2A incoming request. This type encapsulates the HTTP request metadata, including query parameters and headers, that are received as part of an A2A protocol request.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Task Id |
String |
The ID assigned to this task, either provided by the client or auto-generated by the connector. |
x |
|
Context Id |
String |
The context ID assigned to this task, either provided by the client or auto-generated by the connector. |
x |
|
Query Params |
Object |
The query parameters received in the HTTP request. |
x |
|
Headers |
Object |
The HTTP headers received in the request. |
x |
|
Version |
String |
HTTP version of the request. Former |
x |
|
Scheme |
String |
HTTP scheme of the request. Former |
x |
|
Method |
String |
HTTP method of the request. Former |
x |
|
Local Address |
String |
Local host address from the server. |
x |
|
Remote Address |
String |
Remote host address from the sender. Former |
x |
|
Operation Name |
Enumeration, one of:
|
The A2A operation being processed (for example, GetTask or ListTasks). Populated by the binding layer so flow authors can distinguish which operation is running without parsing the JSON-RPC method themselves. The enum constants match the A2A spec section 3 wire names. |
||
Tenant |
String |
Optional tenant routing key from the A2A request. The tenant parameter is used for agent routing per A2A spec section 3.1.2, allowing a single endpoint URL to host multiple agent implementations. For example, |
||
Client Certificate |
Client certificate (if 2 way TLS is enabled). Former |
Certificate Data
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Basic Constraints |
Number |
Basic constraints extension value indicating if the certificate can be used to sign other certificates. |
||
Critical Extension OI Ds |
Array of String |
Object identifiers (OIDs) of critical extensions in the certificate. |
||
Encoded |
Binary |
The encoded form of the certificate. |
||
Extended Key Usage |
Array of String |
Extended key usage extension indicating specific purposes for which the certificate public key can be used. |
||
Extensions |
Array of Certificate Extension |
Certificate extensions providing additional information about the certificate. |
||
Issuer Alternative Names |
Array of Alternative Name Data |
Alternative names for the certificate issuer. |
||
Issuer DN |
Distinguished name of the certificate issuer. |
|||
Issuer Unique ID |
Array of Boolean |
Unique identifier for the certificate issuer. |
||
Issuer X500 Principal |
X.500 principal information for the certificate issuer. |
|||
Key Usage |
Array of Boolean |
Key usage extension indicating the purposes for which the certificate public key can be used. |
||
Name |
String |
Name associated with the certificate. |
||
Non Critical Extension OI Ds |
Array of String |
Object identifiers (OIDs) of non-critical extensions in the certificate. |
||
Not After |
Date |
Expiration date of the certificate. |
||
Not Before |
Date |
Date from which the certificate is valid. |
||
Public Key |
Public key information from the certificate. |
|||
Serial Number |
Number |
Serial number of the certificate. |
||
Serial Number Object |
Serial number object containing detailed serial number information. |
|||
Sig Alg Name |
String |
Name of the signature algorithm used to sign the certificate. |
||
Sig Alg OID |
String |
Object identifier (OID) of the signature algorithm. |
||
Sig Alg Params |
Binary |
Parameters for the signature algorithm. |
||
Signature |
Binary |
Digital signature of the certificate. |
||
Subject Alternative Names |
Array of Alternative Name Data |
Alternative names for the certificate subject. |
||
Subject DN |
Distinguished name of the certificate subject. |
|||
Subject X500 Principal |
X.500 principal information for the certificate subject. |
|||
Type |
String |
Type of the certificate. |
||
Version |
Number |
Version number of the certificate format. |
Certificate Extension
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Criticality |
Boolean |
Indicates whether the extension is critical. If |
||
Oid |
String |
Object identifier (OID) that uniquely identifies the extension type. |
||
Value |
Binary |
The extension value in its encoded form. |
Alternative Name Data
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name |
String |
The alternative name value. |
||
Type |
Number |
The type of alternative name. |
Principal Data
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Common Name |
String |
The common name (CN) component of the distinguished name. |
||
Name |
String |
The full distinguished name string representation. |
X500 Principal Data
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Name |
String |
The X.500 distinguished name in string format. |
Public Key Data
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Algorithm |
String |
The algorithm used for the public key (for example, RSA, DSA, EC). |
||
Encoded |
Binary |
The encoded form of the public key. |
||
Modulus |
Number |
The modulus value for RSA public keys. |
||
Params |
Number |
Algorithm-specific parameters for the public key. |
||
Public Key |
String |
The public key value in string representation. |
Serial Number Data
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Serial Number |
Number |
The serial number value of the certificate. |
Redelivery Policy
Configures the redelivery policy for executing requests that generate errors. You can add a redelivery policy to any source in a flow.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Max Redelivery Count |
Number |
Maximum number of times to process a redelivered request unsuccessfully before returning a REDELIVERY_EXHAUSTED error. |
||
Message Digest Algorithm |
String |
Secure hashing algorithm to use if the Use Secure Hash field is |
||
Message Identifier |
One or more expressions that determine if a message was redelivered. This property can be set only if the Use Secure Hash field is |
|||
Object Store |
ObjectStore |
Configures the object store that stores the redelivery counter for each message. |
Redelivery Policy Message Identifier
Configures how to identify a redelivered message and how to find out when the message was redelivered.
| Field | Type | Description | Default Value | Required |
|---|---|---|---|---|
Use Secure Hash |
Boolean |
If |
||
Id Expression |
String |
One or more expressions that determine when a message was redelivered. You can set this property only if the Use Secure Hash field is |



