changedOutput schema / description
Previous value: -"Risk-tier distribution for the active DeltaSignal issuer universe. Tier names are object keys such as HIGH, MODERATE, LOW, and UNCLASSIFIED."New value: +"DeltaSignal ATLAS-7 MCPResponse wrapper. Raw tool payload is returned under data."
removedOutput schema / properties / HIGH
Removed value: -{
- "additionalProperties": true,
- "description": "Risk tier bucket.",
- "properties": {
- "count": {
- "description": "Issuer count in this risk tier.",
- "type": "integer"
- },
- "percentage": {
- "description": "Percentage of the active issuer universe in this tier.",
- "type": "number"
- }
- },
- "type": "object"
-}
removedOutput schema / properties / LOW
Removed value: -{
- "additionalProperties": true,
- "description": "Risk tier bucket.",
- "properties": {
- "count": {
- "description": "Issuer count in this risk tier.",
- "type": "integer"
- },
- "percentage": {
- "description": "Percentage of the active issuer universe in this tier.",
- "type": "number"
- }
- },
- "type": "object"
-}
removedOutput schema / properties / MODERATE
Removed value: -{
- "additionalProperties": true,
- "description": "Risk tier bucket.",
- "properties": {
- "count": {
- "description": "Issuer count in this risk tier.",
- "type": "integer"
- },
- "percentage": {
- "description": "Percentage of the active issuer universe in this tier.",
- "type": "number"
- }
- },
- "type": "object"
-}
removedOutput schema / properties / UNCLASSIFIED
Removed value: -{
- "additionalProperties": true,
- "description": "Risk tier bucket.",
- "properties": {
- "count": {
- "description": "Issuer count in this risk tier.",
- "type": "integer"
- },
- "percentage": {
- "description": "Percentage of the active issuer universe in this tier.",
- "type": "number"
- }
- },
- "type": "object"
-}
addedOutput schema / properties / data
Added value: +{
+ "additionalProperties": true,
+ "description": "Risk-tier distribution for the active DeltaSignal issuer universe. Tier names are object keys such as HIGH, MODERATE, LOW, and UNCLASSIFIED.",
+ "properties": {
+ "HIGH": {
+ "additionalProperties": true,
+ "description": "Risk tier bucket.",
+ "properties": {
+ "count": {
+ "description": "Issuer count in this risk tier.",
+ "type": "integer"
+ },
+ "percentage": {
+ "description": "Percentage of the active issuer universe in this tier.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "LOW": {
+ "additionalProperties": true,
+ "description": "Risk tier bucket.",
+ "properties": {
+ "count": {
+ "description": "Issuer count in this risk tier.",
+ "type": "integer"
+ },
+ "percentage": {
+ "description": "Percentage of the active issuer universe in this tier.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "MODERATE": {
+ "additionalProperties": true,
+ "description": "Risk tier bucket.",
+ "properties": {
+ "count": {
+ "description": "Issuer count in this risk tier.",
+ "type": "integer"
+ },
+ "percentage": {
+ "description": "Percentage of the active issuer universe in this tier.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "UNCLASSIFIED": {
+ "additionalProperties": true,
+ "description": "Risk tier bucket.",
+ "properties": {
+ "count": {
+ "description": "Issuer count in this risk tier.",
+ "type": "integer"
+ },
+ "percentage": {
+ "description": "Percentage of the active issuer universe in this tier.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [],
+ "type": "object"
+}
addedOutput schema / properties / mcp_summary
Added value: +{
+ "description": "Concise high-signal summary of the tool response. Maximum 140 characters.",
+ "type": "string"
+}
addedOutput schema / properties / provenance
Added value: +{
+ "additionalProperties": true,
+ "description": "Traceability information for the MCP tool response.",
+ "properties": {
+ "compacted": {
+ "description": "Whether the data payload was compacted for MCP context safety.",
+ "type": "boolean"
+ },
+ "elapsed_ms": {
+ "description": "Elapsed time for the MCP tool call in milliseconds.",
+ "type": "integer"
+ },
+ "freshness_window_hours": {
+ "description": "Freshness window in hours when reported by the underlying tool.",
+ "type": "integer"
+ },
+ "latest_activity_source_date": {
+ "description": "Latest CompanyFacts activity source date when available.",
+ "examples": [
+ "2026-05-05"
+ ],
+ "format": "date",
+ "maxLength": 10,
+ "minLength": 10,
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
+ "type": "string"
+ },
+ "latest_computed_source_date": {
+ "description": "Latest computed DeltaSignal source date when available.",
+ "examples": [
+ "2026-05-05"
+ ],
+ "format": "date",
+ "maxLength": 10,
+ "minLength": 10,
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
+ "type": "string"
+ },
+ "source_date": {
+ "description": "Primary DeltaSignal source date when available.",
+ "examples": [
+ "2026-05-05"
+ ],
+ "format": "date",
+ "maxLength": 10,
+ "minLength": 10,
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}
addedOutput schema / properties / suggested_follow_ups
Added value: +{
+ "description": "Concrete next MCP calls an agent can run to continue the workflow.",
+ "items": {
+ "additionalProperties": true,
+ "description": "Suggested follow-up MCP call.",
+ "properties": {
+ "args": {
+ "additionalProperties": true,
+ "description": "Arguments for the suggested MCP tool call.",
+ "type": "object"
+ },
+ "tool": {
+ "description": "MCP tool name to call next.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / usage_metadata
Added value: +{
+ "additionalProperties": true,
+ "description": "Performance and estimated cost metadata for this MCP tool call.",
+ "properties": {
+ "elapsed_ms": {
+ "description": "Elapsed time for the MCP tool call in milliseconds.",
+ "type": "integer"
+ },
+ "estimated_cost_usd": {
+ "description": "Estimated public x402-equivalent cost in USD when known.",
+ "type": "number"
+ },
+ "tokens_used": {
+ "description": "Token usage when known.",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}
changedOutput schema / required
Previous value: -[]New value: +[
+ "mcp_summary",
+ "data",
+ "provenance",
+ "suggested_follow_ups"
+]