changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "authenticated": {
+ "description": "Present and false only on the unauthenticated public ping.",
+ "type": "boolean"
+ },
+ "client_id": {
+ "description": "OAuth client id of the calling MCP client, or null on an unauthenticated ping.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "cloud": {
+ "description": "Always true on Remote MCP. Marks the response as cloud-served, with no local cwd.",
+ "type": "boolean"
+ },
+ "echo": {
+ "description": "The `message` argument echoed back, or null when none was sent.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "error": {
+ "additionalProperties": true,
+ "description": "Present only when ok is false.",
+ "properties": {
+ "code": {
+ "description": "Stable machine-readable failure code, for example insufficient_scope, workspace_id_required, rate_limited, not_found, or upstream_error. Branch on this, not on message text.",
+ "type": "string"
+ },
+ "detail": {
+ "description": "Optional structured context for the failure, for example { missing_scopes: [...] } on insufficient_scope."
+ },
+ "message": {
+ "description": "Human-readable explanation of the failure.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "message"
+ ],
+ "type": "object"
+ },
+ "local_runtime": {
+ "additionalProperties": true,
+ "description": "Present on tools that carry the local-runtime upgrade reminder.",
+ "properties": {
+ "cta": {
+ "description": "Upgrade line to surface to the user when local Pathrule (Studio or CLI) would serve them better than Remote MCP.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "cta"
+ ],
+ "type": "object"
+ },
+ "ok": {
+ "description": "true when the call succeeded. false when it did not, in which case `error` carries the reason and the success fields are absent.",
+ "type": "boolean"
+ },
+ "pong": {
+ "const": true,
+ "description": "Present and true when the endpoint answered.",
+ "type": "boolean"
+ },
+ "ts": {
+ "description": "Server timestamp in ISO 8601.",
+ "type": "string"
+ },
+ "version": {
+ "description": "Connector build identifier.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "ok"
+ ],
+ "type": "object"
+}