a2a_server_registry
Manage A2A server URLs by adding or removing them using specified actions; includes name and URL inputs to facilitate communication between Claude Desktop and A2A protocol agents.
Instructions
Add or remove an A2A server URL.
Args:
action: Either "add" or "remove"
name: Name of the server
url: URL of the server (required for "add" action)
Returns:
Dict with status and message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
name | Yes | ||
url | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"enum": [
"add",
"remove"
],
"title": "Action",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Url"
}
},
"required": [
"action",
"name"
],
"title": "a2a_server_registryArguments",
"type": "object"
}