{
  "name": "veridianum-mcp-server",
  "version": "2026.02",
  "protocolVersion": "2025-06-18",
  "description": "Veridianum Epistemic Intelligence & Dignity Metrics MCP Server",
  "origin": "https://veridianum.com",
  "tools": [
    {
      "name": "assay_claim",
      "description": "Deterministically assay any statement or press release excerpt against the Veridianum substance/inflation heuristic. Returns substance score (0-100), hype score (0-100), net signal, detected buzzwords, and verdict without consuming LLM tokens.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "description": "The claim or excerpt text to evaluate."
          }
        },
        "required": [
          "text"
        ]
      }
    },
    {
      "name": "get_monograph",
      "description": "Retrieve the complete publication-grade monograph, 3D dignity evaluation, statutory grounding, and peer-reviewed sources for a given slug.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "Monograph slug (e.g. 'eudr-traceability-paradox', 'geothermal-baseload-bottleneck', 'when-agents-go-off-script', 'the-thirteen-month-dividend')."
          }
        },
        "required": [
          "slug"
        ]
      }
    },
    {
      "name": "list_monographs",
      "description": "List all active monographs in the Veridianum Observatory with their pillars, coverage lanes, reading times, and URLs.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "pillar": {
            "type": "string",
            "description": "Optional filter by pillar: 'signals', 'systems', 'excellence', or 'perspective'."
          }
        }
      }
    },
    {
      "name": "get_dignity_ledger",
      "description": "Query the 3-axis dignity impact matrix (Formal Protection, Material Access, Risk Redistribution) across all active monographs.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "onlyProgress": {
            "type": "boolean",
            "description": "If true, return only monographs meeting the 2-of-3 criteria for structural progress."
          }
        }
      }
    },
    {
      "name": "list_patterns",
      "description": "List all measured systemic patterns tracked by the observatory, including their active thesis, open question, and resolution criteria.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ],
  "prompts": [
    {
      "name": "audit_claim_against_dignity",
      "description": "Guides an agent on evaluating whether a policy announcement constitutes genuine structural progress using the 3D Dignity framework.",
      "arguments": [
        {
          "name": "policy_name",
          "description": "The name or statute code of the policy under review.",
          "required": true
        }
      ]
    }
  ],
  "counts": {
    "monographs": 11,
    "patterns": 8,
    "occupations": 6
  },
  "documentation": "https://veridianum.com/llms.txt"
}