From e12dbc7471bcc0a1d79554e62a75cd1e6c52652c Mon Sep 17 00:00:00 2001 From: Dmitry Rantovov Date: Sun, 6 Sep 2026 11:41:45 +0300 Subject: [PATCH] docs: clarify required discovery service type --- internal/node/mcp_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/node/mcp_handlers.go b/internal/node/mcp_handlers.go index 8c7228e4..1246b1df 100644 --- a/internal/node/mcp_handlers.go +++ b/internal/node/mcp_handlers.go @@ -66,7 +66,7 @@ const inferenceInvocationHint = `To call an inference service, send a normal HTT // DiscoverRemoteServicesParams defines the parameters for the discover_remote_services tool. type DiscoverRemoteServicesParams struct { - Type string `json:"type" jsonschema:"Service type (mcp, inference, a2a)"` + Type string `json:"type" jsonschema:"Required. One of: mcp, inference, a2a."` Name string `json:"name,omitempty" jsonschema:"Optional service name. Omit to list all services of the given type."` Limit int `json:"limit,omitempty" jsonschema:"Optional limit for pagination. Defaults to 20."` Offset int `json:"offset,omitempty" jsonschema:"Optional offset for pagination. Defaults to 0."`