Skip to content

Commit 051ce37

Browse files
authored
Merge branch 'main' into md-agentcards
2 parents fe72346 + b567e80 commit 051ce37

File tree

7 files changed

+284
-6
lines changed

7 files changed

+284
-6
lines changed

src/a2a/server/apps/jsonrpc/jsonrpc_app.py

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@
3232
AgentCard,
3333
CancelTaskRequest,
3434
DeleteTaskPushNotificationConfigRequest,
35+
GetAuthenticatedExtendedCardRequest,
3536
GetTaskPushNotificationConfigRequest,
3637
GetTaskRequest,
3738
InternalError,
3839
InvalidRequestError,
3940
JSONParseError,
4041
JSONRPCError,
4142
JSONRPCErrorResponse,
43+
JSONRPCRequest,
4244
JSONRPCResponse,
4345
ListTaskPushNotificationConfigRequest,
4446
SendMessageRequest,
@@ -155,7 +157,9 @@ def __init__(
155157
self.card_modifier = card_modifier
156158
self.extended_card_modifier = extended_card_modifier
157159
self.handler = JSONRPCHandler(
158-
agent_card=agent_card, request_handler=http_handler
160+
agent_card=agent_card,
161+
request_handler=http_handler,
162+
extended_agent_card=extended_agent_card,
159163
)
160164
if (
161165
self.agent_card.supports_authenticated_extended_card
@@ -226,7 +230,16 @@ async def _handle_requests(self, request: Request) -> Response: # noqa: PLR0911
226230

227231
try:
228232
body = await request.json()
233+
if isinstance(body, dict):
234+
request_id = body.get('id')
235+
236+
# First, validate the basic JSON-RPC structure. This is crucial
237+
# because the A2ARequest model is a discriminated union where some
238+
# request types have default values for the 'method' field
239+
JSONRPCRequest.model_validate(body)
240+
229241
a2a_request = A2ARequest.model_validate(body)
242+
230243
call_context = self._context_builder.build(request)
231244

232245
request_id = a2a_request.root.id
@@ -366,6 +379,13 @@ async def _process_non_streaming_request(
366379
context,
367380
)
368381
)
382+
case GetAuthenticatedExtendedCardRequest():
383+
handler_result = (
384+
await self.handler.get_authenticated_extended_card(
385+
request_obj,
386+
context,
387+
)
388+
)
369389
case _:
370390
logger.error(
371391
f'Unhandled validated request type: {type(request_obj)}'
@@ -462,6 +482,10 @@ async def _handle_get_authenticated_extended_agent_card(
462482
self, request: Request
463483
) -> JSONResponse:
464484
"""Handles GET requests for the authenticated extended agent card."""
485+
logger.warning(
486+
'HTTP GET for authenticated extended card has been called by a client. '
487+
'This endpoint is deprecated in favor of agent/authenticatedExtendedCard JSON-RPC method and will be removed in a future release.'
488+
)
465489
if not self.agent_card.supports_authenticated_extended_card:
466490
return JSONResponse(
467491
{'error': 'Extended agent card not supported or not enabled.'},

src/a2a/server/apps/jsonrpc/starlette_app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ def routes(
111111
)
112112
)
113113

114+
# TODO: deprecated endpoint to be removed in a future release
114115
if self.agent_card.supports_authenticated_extended_card:
115116
app_routes.append(
116117
Route(

src/a2a/server/request_handlers/jsonrpc_handler.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@
77
from a2a.server.request_handlers.response_helpers import prepare_response_object
88
from a2a.types import (
99
AgentCard,
10+
AuthenticatedExtendedCardNotConfiguredError,
1011
CancelTaskRequest,
1112
CancelTaskResponse,
1213
CancelTaskSuccessResponse,
1314
DeleteTaskPushNotificationConfigRequest,
1415
DeleteTaskPushNotificationConfigResponse,
1516
DeleteTaskPushNotificationConfigSuccessResponse,
17+
GetAuthenticatedExtendedCardRequest,
18+
GetAuthenticatedExtendedCardResponse,
19+
GetAuthenticatedExtendedCardSuccessResponse,
1620
GetTaskPushNotificationConfigRequest,
1721
GetTaskPushNotificationConfigResponse,
1822
GetTaskPushNotificationConfigSuccessResponse,
@@ -57,15 +61,18 @@ def __init__(
5761
self,
5862
agent_card: AgentCard,
5963
request_handler: RequestHandler,
64+
extended_agent_card: AgentCard | None = None,
6065
):
6166
"""Initializes the JSONRPCHandler.
6267
6368
Args:
6469
agent_card: The AgentCard describing the agent's capabilities.
6570
request_handler: The underlying `RequestHandler` instance to delegate requests to.
71+
extended_agent_card: An optional, distinct Extended AgentCard to be served
6672
"""
6773
self.agent_card = agent_card
6874
self.request_handler = request_handler
75+
self.extended_agent_card = extended_agent_card
6976

7077
async def on_message_send(
7178
self,
@@ -395,3 +402,31 @@ async def delete_push_notification_config(
395402
id=request.id, error=e.error if e.error else InternalError()
396403
)
397404
)
405+
406+
async def get_authenticated_extended_card(
407+
self,
408+
request: GetAuthenticatedExtendedCardRequest,
409+
context: ServerCallContext | None = None,
410+
) -> GetAuthenticatedExtendedCardResponse:
411+
"""Handles the 'agent/authenticatedExtendedCard' JSON-RPC method.
412+
413+
Args:
414+
request: The incoming `GetAuthenticatedExtendedCardRequest` object.
415+
context: Context provided by the server.
416+
417+
Returns:
418+
A `GetAuthenticatedExtendedCardResponse` object containing the config or a JSON-RPC error.
419+
"""
420+
if self.extended_agent_card is None:
421+
return GetAuthenticatedExtendedCardResponse(
422+
root=JSONRPCErrorResponse(
423+
id=request.id,
424+
error=AuthenticatedExtendedCardNotConfiguredError(),
425+
)
426+
)
427+
428+
return GetAuthenticatedExtendedCardResponse(
429+
root=GetAuthenticatedExtendedCardSuccessResponse(
430+
id=request.id, result=self.extended_agent_card
431+
)
432+
)

src/a2a/types.py

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,26 @@ class AgentSkill(A2ABaseModel):
172172
"""
173173

174174

175+
class AuthenticatedExtendedCardNotConfiguredError(A2ABaseModel):
176+
"""
177+
An A2A-specific error indicating that the agent does not have an Authenticated Extended Card configured
178+
"""
179+
180+
code: Literal[-32007] = -32007
181+
"""
182+
The error code for when an authenticated extended card is not configured.
183+
"""
184+
data: Any | None = None
185+
"""
186+
A primitive or structured value containing additional information about the error.
187+
This may be omitted.
188+
"""
189+
message: str | None = 'Authenticated Extended Card is not configured'
190+
"""
191+
The error message.
192+
"""
193+
194+
175195
class AuthorizationCodeOAuthFlow(A2ABaseModel):
176196
"""
177197
Defines configuration details for the OAuth 2.0 Authorization Code flow.
@@ -375,6 +395,27 @@ class FileWithUri(A2ABaseModel):
375395
"""
376396

377397

398+
class GetAuthenticatedExtendedCardRequest(A2ABaseModel):
399+
"""
400+
Represents a JSON-RPC request for the `agent/getAuthenticatedExtendedCard` method.
401+
"""
402+
403+
id: str | int
404+
"""
405+
The identifier for this request.
406+
"""
407+
jsonrpc: Literal['2.0'] = '2.0'
408+
"""
409+
The version of the JSON-RPC protocol. MUST be exactly "2.0".
410+
"""
411+
method: Literal['agent/getAuthenticatedExtendedCard'] = (
412+
'agent/getAuthenticatedExtendedCard'
413+
)
414+
"""
415+
The method name. Must be 'agent/getAuthenticatedExtendedCard'.
416+
"""
417+
418+
378419
class GetTaskPushNotificationConfigParams(A2ABaseModel):
379420
"""
380421
Defines parameters for fetching a specific push notification configuration for a task.
@@ -999,6 +1040,7 @@ class A2AError(
9991040
| UnsupportedOperationError
10001041
| ContentTypeNotSupportedError
10011042
| InvalidAgentResponseError
1043+
| AuthenticatedExtendedCardNotConfiguredError
10021044
]
10031045
):
10041046
root: (
@@ -1013,6 +1055,7 @@ class A2AError(
10131055
| UnsupportedOperationError
10141056
| ContentTypeNotSupportedError
10151057
| InvalidAgentResponseError
1058+
| AuthenticatedExtendedCardNotConfiguredError
10161059
)
10171060
"""
10181061
A discriminated union of all standard JSON-RPC and A2A-specific error types.
@@ -1170,6 +1213,7 @@ class JSONRPCErrorResponse(A2ABaseModel):
11701213
| UnsupportedOperationError
11711214
| ContentTypeNotSupportedError
11721215
| InvalidAgentResponseError
1216+
| AuthenticatedExtendedCardNotConfiguredError
11731217
)
11741218
"""
11751219
An object describing the error that occurred.
@@ -1625,6 +1669,7 @@ class A2ARequest(
16251669
| TaskResubscriptionRequest
16261670
| ListTaskPushNotificationConfigRequest
16271671
| DeleteTaskPushNotificationConfigRequest
1672+
| GetAuthenticatedExtendedCardRequest
16281673
]
16291674
):
16301675
root: (
@@ -1637,6 +1682,7 @@ class A2ARequest(
16371682
| TaskResubscriptionRequest
16381683
| ListTaskPushNotificationConfigRequest
16391684
| DeleteTaskPushNotificationConfigRequest
1685+
| GetAuthenticatedExtendedCardRequest
16401686
)
16411687
"""
16421688
A discriminated union representing all possible JSON-RPC 2.0 requests supported by the A2A specification.
@@ -1750,6 +1796,25 @@ class AgentCard(A2ABaseModel):
17501796
"""
17511797

17521798

1799+
class GetAuthenticatedExtendedCardSuccessResponse(A2ABaseModel):
1800+
"""
1801+
Represents a successful JSON-RPC response for the `agent/getAuthenticatedExtendedCard` method.
1802+
"""
1803+
1804+
id: str | int | None = None
1805+
"""
1806+
The identifier established by the client.
1807+
"""
1808+
jsonrpc: Literal['2.0'] = '2.0'
1809+
"""
1810+
The version of the JSON-RPC protocol. MUST be exactly "2.0".
1811+
"""
1812+
result: AgentCard
1813+
"""
1814+
The result is an Agent Card object.
1815+
"""
1816+
1817+
17531818
class Task(A2ABaseModel):
17541819
"""
17551820
Represents a single, stateful operation or conversation between a client and an agent.
@@ -1769,7 +1834,7 @@ class Task(A2ABaseModel):
17691834
"""
17701835
id: str
17711836
"""
1772-
A unique identifier for the task, generated by the client for a new task or provided by the agent.
1837+
A unique identifier for the task, generated by the server for a new task.
17731838
"""
17741839
kind: Literal['task'] = 'task'
17751840
"""
@@ -1804,6 +1869,17 @@ class CancelTaskSuccessResponse(A2ABaseModel):
18041869
"""
18051870

18061871

1872+
class GetAuthenticatedExtendedCardResponse(
1873+
RootModel[
1874+
JSONRPCErrorResponse | GetAuthenticatedExtendedCardSuccessResponse
1875+
]
1876+
):
1877+
root: JSONRPCErrorResponse | GetAuthenticatedExtendedCardSuccessResponse
1878+
"""
1879+
Represents a JSON-RPC response for the `agent/getAuthenticatedExtendedCard` method.
1880+
"""
1881+
1882+
18071883
class GetTaskSuccessResponse(A2ABaseModel):
18081884
"""
18091885
Represents a successful JSON-RPC response for the `tasks/get` method.
@@ -1889,6 +1965,7 @@ class JSONRPCResponse(
18891965
| GetTaskPushNotificationConfigSuccessResponse
18901966
| ListTaskPushNotificationConfigSuccessResponse
18911967
| DeleteTaskPushNotificationConfigSuccessResponse
1968+
| GetAuthenticatedExtendedCardSuccessResponse
18921969
]
18931970
):
18941971
root: (
@@ -1901,6 +1978,7 @@ class JSONRPCResponse(
19011978
| GetTaskPushNotificationConfigSuccessResponse
19021979
| ListTaskPushNotificationConfigSuccessResponse
19031980
| DeleteTaskPushNotificationConfigSuccessResponse
1981+
| GetAuthenticatedExtendedCardSuccessResponse
19041982
)
19051983
"""
19061984
A discriminated union representing all possible JSON-RPC 2.0 responses

tests/server/request_handlers/test_jsonrpc_handler.py

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,15 @@
2727
AgentCapabilities,
2828
AgentCard,
2929
Artifact,
30+
AuthenticatedExtendedCardNotConfiguredError,
3031
CancelTaskRequest,
3132
CancelTaskSuccessResponse,
3233
DeleteTaskPushNotificationConfigParams,
3334
DeleteTaskPushNotificationConfigRequest,
3435
DeleteTaskPushNotificationConfigSuccessResponse,
36+
GetAuthenticatedExtendedCardRequest,
37+
GetAuthenticatedExtendedCardResponse,
38+
GetAuthenticatedExtendedCardSuccessResponse,
3539
GetTaskPushNotificationConfigParams,
3640
GetTaskPushNotificationConfigRequest,
3741
GetTaskPushNotificationConfigResponse,
@@ -1189,3 +1193,59 @@ async def test_on_delete_push_notification_error(self) -> None:
11891193
# Assert
11901194
self.assertIsInstance(response.root, JSONRPCErrorResponse)
11911195
self.assertEqual(response.root.error, UnsupportedOperationError()) # type: ignore
1196+
1197+
async def test_get_authenticated_extended_card_success(self) -> None:
1198+
"""Test successful retrieval of the authenticated extended agent card."""
1199+
# Arrange
1200+
mock_request_handler = AsyncMock(spec=DefaultRequestHandler)
1201+
mock_extended_card = AgentCard(
1202+
name='Extended Card',
1203+
description='More details',
1204+
url='http://agent.example.com/api',
1205+
version='1.1',
1206+
capabilities=AgentCapabilities(),
1207+
default_input_modes=['text/plain'],
1208+
default_output_modes=['application/json'],
1209+
skills=[],
1210+
)
1211+
handler = JSONRPCHandler(
1212+
self.mock_agent_card,
1213+
mock_request_handler,
1214+
extended_agent_card=mock_extended_card,
1215+
)
1216+
request = GetAuthenticatedExtendedCardRequest(id='ext-card-req-1')
1217+
call_context = ServerCallContext(state={'foo': 'bar'})
1218+
1219+
# Act
1220+
response: GetAuthenticatedExtendedCardResponse = (
1221+
await handler.get_authenticated_extended_card(request, call_context)
1222+
)
1223+
1224+
# Assert
1225+
self.assertIsInstance(
1226+
response.root, GetAuthenticatedExtendedCardSuccessResponse
1227+
)
1228+
self.assertEqual(response.root.id, 'ext-card-req-1')
1229+
self.assertEqual(response.root.result, mock_extended_card)
1230+
1231+
async def test_get_authenticated_extended_card_not_configured(self) -> None:
1232+
"""Test error when authenticated extended agent card is not configured."""
1233+
# Arrange
1234+
mock_request_handler = AsyncMock(spec=DefaultRequestHandler)
1235+
handler = JSONRPCHandler(
1236+
self.mock_agent_card, mock_request_handler, extended_agent_card=None
1237+
)
1238+
request = GetAuthenticatedExtendedCardRequest(id='ext-card-req-2')
1239+
call_context = ServerCallContext(state={'foo': 'bar'})
1240+
1241+
# Act
1242+
response: GetAuthenticatedExtendedCardResponse = (
1243+
await handler.get_authenticated_extended_card(request, call_context)
1244+
)
1245+
1246+
# Assert
1247+
self.assertIsInstance(response.root, JSONRPCErrorResponse)
1248+
self.assertEqual(response.root.id, 'ext-card-req-2')
1249+
self.assertIsInstance(
1250+
response.root.error, AuthenticatedExtendedCardNotConfiguredError
1251+
)

tests/server/test_integration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,8 @@ def test_invalid_request_structure(client: TestClient):
838838
'/',
839839
json={
840840
# Missing required fields
841-
'id': '123'
841+
'id': '123',
842+
'method': 'foo/bar',
842843
},
843844
)
844845
assert response.status_code == 200

0 commit comments

Comments
 (0)