Example Payloads & Signatures

Review request structures and raw JSON response signatures returned by the primary Dubstrata MCP query nodes and tools.

query_graph

Request Payload
{
  "query": "Will NVIDIA Face a GPU Bubble?",
  "is_private": false,
  "agent_role": "analyst"
}
Response Signature
{
  "result": "[DUBSTRATA TELEMETRY PROTOCOL]\n...",
  "status": "success",
  "aggregate_sentiment_score": 78,
  "graph_implied_trust_index": 0.94,
  "causal_magnitude": 0.82,
  "structured_result": {
    "code": "SUCCESS",
    "message": "Causal context retrieved.",
    "claims": [
      {
        "subject": "GPU Pricing",
        "predicate": "INCREASES",
        "object": "HFT Infrastructure Cost"
      }
    ],
    "relations": [],
    "sources": ["https://api.dubstrata.com/docs/sec-filing-nvda"],
    "price_action": []
  }
}

get_all_facts

Request Payload
{
  "entity_name": "Solana",
  "tenant_id": "default"
}
Response Signature
{
  "entity": "Solana",
  "facts_count": 2,
  "facts": [
    {
      "claim_id": "claim_sol_001",
      "statement": "Solana ETF odds fluctuate dynamically.",
      "is_latest": true,
      "source_url": "https://polymarket.com/event/solana-etf"
    },
    {
      "claim_id": "claim_sol_002",
      "statement": "Solana active validator count exceeds 1500.",
      "is_latest": true,
      "source_url": "https://solana.com/validators"
    }
  ]
}

find_conflicts

Request Payload
{
  "entity_name": "Federal Reserve",
  "tenant_id": "default"
}
Response Signature
{
  "entity": "Federal Reserve",
  "conflicts_detected": true,
  "grouped_claims": {
    "https://polymarket.com/event/fed-rate-cut-q4": [
      { "statement": "Fed to cut rates in Q4 2026", "sentiment": "dovish" }
    ],
    "https://federalreserve.gov/policy-minutes": [
      { "statement": "Rates to remain elevated through year-end", "sentiment": "hawkish" }
    ]
  }
}

get_historical_timeline

Request Payload
{
  "entity_name": "SpaceX Starship"
}
Response Signature
{
  "entity": "SpaceX Starship",
  "timeline_steps": [
    {
      "timestamp": "2026-05-15T09:00:00Z",
      "statement": "Starship Flight 5 scheduled for Q3 2026",
      "status": "superseded"
    },
    {
      "timestamp": "2026-06-12T14:30:00Z",
      "statement": "Starship Flight 5 approved for immediate launch",
      "status": "active"
    }
  ]
}

compile_intelligence_report

Request Payload
{
  "query": "Impact of semiconductor trade restrictions on ASML",
  "tenant_id": "default",
  "return_dict": true
}
Response Signature
{
  "success": true,
  "report": {
    "title": "ASML Geopolitical Valuation Divergence",
    "subtitle": "Alternative data analysis of lithography tooling shipments.",
    "assetClass": "Equities",
    "strategyType": "Systematic Relative Value",
    "horizon": "6 Months",
    "blufThesis": "...",
    "metricsTable": {
      "targetReturn": "14.5%",
      "maxDrawdown": "-3.2%",
      "sharpeRatio": "2.1"
    }
  }
}