changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "deprecations": {
+ "description": "Spec-level deprecation advisories (MCP 2026-07-28, SEP-2577) for the client features the report surfaces.",
+ "items": {
+ "additionalProperties": {},
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "initialize": {
+ "additionalProperties": {},
+ "description": "The MCP initialize handshake echoed verbatim: { request: { clientInfo, capabilities }, response: { protocolVersion, capabilities, serverInfo } }.",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "probes": {
+ "additionalProperties": false,
+ "description": "Present only when probeElicitation was true: the live round-trip's attempted/action/latencyMs/verdict.",
+ "properties": {
+ "elicitationForm": {
+ "additionalProperties": {},
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "elicitationForm"
+ ],
+ "type": "object"
+ },
+ "shareError": {
+ "description": "Present when sharing was requested but failed: a one-line error summary.",
+ "type": "string"
+ },
+ "shared": {
+ "description": "Present when share: true was passed — whether the report landed in the evidence queue.",
+ "type": "boolean"
+ },
+ "support": {
+ "additionalProperties": false,
+ "description": "Elicitly's derived support booleans, inferred from the advertised capabilities.",
+ "properties": {
+ "elicitation": {
+ "type": "boolean"
+ },
+ "elicitationForm": {
+ "type": "boolean"
+ },
+ "elicitationUrl": {
+ "type": "boolean"
+ },
+ "roots": {
+ "type": "boolean"
+ },
+ "sampling": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "elicitation",
+ "elicitationForm",
+ "elicitationUrl",
+ "sampling",
+ "roots"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "initialize",
+ "support",
+ "deprecations"
+ ],
+ "type": "object"
+}