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."`