addedInput schema / properties / detail
Added value: +{
+ "default": "lite",
+ "description": "Use lite to decide and start, full for detailed MCP query metadata, or download for the complete raw metadata file.",
+ "enum": [
+ "lite",
+ "full",
+ "download"
+ ],
+ "type": "string"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": true,
+ "anyOf": [
+ {
+ "required": [
+ "catalog",
+ "pack_id",
+ "detail"
+ ]
+ },
+ {
+ "required": [
+ "error"
+ ]
+ }
+ ],
+ "properties": {
+ "catalog": {
+ "enum": [
+ "data",
+ "geometry"
+ ],
+ "type": "string"
+ },
+ "clarification": {
+ "type": "object"
+ },
+ "detail": {
+ "enum": [
+ "lite",
+ "full",
+ "download"
+ ],
+ "type": "string"
+ },
+ "download_call": {
+ "type": "object"
+ },
+ "download_url": {
+ "type": "string"
+ },
+ "error": {
+ "additionalProperties": true,
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "details": {
+ "type": "object"
+ },
+ "message": {
+ "type": "string"
+ },
+ "retry_hint": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "message"
+ ],
+ "type": "object"
+ },
+ "full_call": {
+ "type": "object"
+ },
+ "guidance": {
+ "type": "object"
+ },
+ "material_policy": {
+ "type": "object"
+ },
+ "next_step": {
+ "additionalProperties": true,
+ "anyOf": [
+ {
+ "required": [
+ "action"
+ ]
+ },
+ {
+ "required": [
+ "tool"
+ ]
+ }
+ ],
+ "properties": {
+ "action": {
+ "type": "string"
+ },
+ "arguments": {
+ "type": "object"
+ },
+ "tool": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "pack_id": {
+ "type": "string"
+ },
+ "provenance": {
+ "type": "object"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "request_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "sources": {
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "warnings": {
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}