Catalog

Tool catalog — 175 governed MCP tools

Generated at build time from the registered tool union (lib/mcp/registered-mcp-tool-names.ts), lib/mcp/well-known-mcp-manifest.ts, lib/x402/tier-assignments.ts, lib/x402/sla-catalog.ts, lib/mcp/free-public-tools.ts, and lib/x402/tool-descriptions.ts. Descriptions use TOOL_DESCRIPTIONS verbatim when present; otherwise the first segment of the well-known manifest description (with literal dollar amounts stripped for this page only).

Showing 175 of 175 tools

  • approve_agent_executionfinancemcp-org

    Approves a pending AI agent execution on behalf of the authenticated org user — enforces four-eyes segregation of duties, role-based authority, justification requirement for elevated tiers, and records HMAC-signed approval to the immutable audit chain. EU AI Act Article 14 compliant for compliance officers, approvers, and supervisors oversight workflows.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "execution_id": {
          "type": "string",
          "minLength": 1,
          "description": "The UUID of the agent execution to approve."
        },
        "justification": {
          "type": "string",
          "description": "Written justification for the approval decision. Required for confidential, restricted, and eyes_only sensitivity tiers (minimum 10 characters)."
        }
      },
      "required": [
        "execution_id"
      ]
    }
  • ask_stratalizefinancemcp-org

    Ask Stratalize a governed intelligence question for this organization and receive a synthesized role-aware response.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • create_agentfinancemcp-org

    Create and deploy a governed AI agent from conversation. Define triggers (scheduled, threshold, event, manual), action sequences, and governance policy in one call. Agent is cryptographically logged to the audit chain. Callable from any AI — Claude, ChatGPT, Copilot, Cursor. Returns agent ID, plain-English summary, and dashboard URL.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Agent display name"
        },
        "description": {
          "type": "string",
          "description": "What this agent does"
        },
        "business_justification": {
          "type": "string",
          "description": "Why this agent exists"
        },
        "trigger": {
          "anyOf": [
            {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "const": "manual"
                }
              },
              "required": [
                "type"
              ],
              "additionalProperties": false
            },
            {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "const": "scheduled"
                },
                "schedule_cron": {
                  "type": "string",
                  "minLength": 1
                },
                "schedule_description": {
                  "type": "string"
                },
                "timezone": {
                  "type": "string"
                }
              },
              "required": [
                "type",
                "schedule_cron"
              ],
              "additionalProperties": false
            },
            {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "const": "threshold"
                },
                "metric": {
                  "type": "string",
                  "minLength": 1
                },
                "operator": {
                  "type": "string",
                  "enum": [
                    "below",
                    "above",
                    "changes_by"
                  ]
                },
                "threshold_value": {
                  "type": "number"
                },
                "integration": {
                  "type": "string",
                  "minLength": 1
                }
              },
              "required": [
                "type",
                "metric",
                "operator",
                "threshold_value",
                "integration"
              ],
              "additionalProperties": false
            },
            {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "const": "event"
                },
                "integration": {
                  "type": "string",
                  "minLength": 1
                },
                "event_type": {
                  "type": "string",
                  "minLength": 1
                },
                "filter_field": {
                  "type": "string"
                },
                "filter_operator": {
                  "type": "string",
                  "enum": [
                    "gt",
                    "lt",
                    "eq",
                    "contains"
                  ]
                },
                "filter_value": {
                  "type": [
                    "string",
                    "number"
                  ]
                }
              },
              "required": [
                "type",
                "integration",
                "event_type"
              ],
              "additionalProperties": false
            },
            {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "const": "webhook"
                },
                "integration": {
                  "type": "string"
                }
              },
              "required": [
                "type"
              ],
              "additionalProperties": false
            }
          ]
        },
        "actions": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "enum": [
                  "read_synthesize",
                  "write_integration",
                  "notify",
                  "internal",
                  "webhook"
                ]
              },
              "integration": {
                "type": "string"
              },
              "tool_name": {
                "type": "string"
              },
              "parameters": {
                "type": "object",
                "additionalProperties": {}
              },
              "channel": {
                "type": "string",
                "enum": [
                  "email",
                  "slack",
                  "dashboard",
                  "calendar_invite"
                ]
              },
              "recipients": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "template": {
                "type": "string"
              },
              "internal_action": {
                "type": "string",
                "enum": [
                  "create_action_item",
                  "flag_vendor",
                  "generate_report",
                  "request_access_review"
                ]
              },
              "url": {
                "type": "string"
              },
              "method": {
                "type": "string",
                "enum": [
                  "GET",
                  "POST",
                  "PATCH"
                ]
              },
              "headers": {
                "type": "object",
                "additionalProperties": {
                  "type": "string"
                }
              },
              "body_template": {
                "type": "string"
              },
              "requires_approval": {
                "type": "boolean"
              },
              "approval_threshold_tier": {
                "type": "string"
              },
              "on_failure": {
                "type": "string",
                "enum": [
                  "retry",
                  "skip",
                  "stop",
                  "notify_admin"
                ]
              },
              "max_retries": {
                "type": "number"
              }
            },
            "required": [
              "type"
            ],
            "additionalProperties": false
          },
          "minItems": 1
        },
        "governance": {
          "type": "object",
          "properties": {
            "allowed_roles": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "minItems": 1
            },
            "max_sensitivity_tier": {
              "type": "string",
              "minLength": 1
            },
            "require_approval_above": {
              "type": "string",
              "minLength": 1
            },
            "business_hours_only": {
              "type": "boolean"
            },
            "auto_approve_below_tier": {
              "type": "boolean"
            },
            "requires_second_approver": {
              "type": "boolean"
            },
            "second_approver_id": {
              "type": "string"
            },
            "approver_pool": {
              "type": "string",
              "enum": [
                "role_match",
                "specific_user",
                "any_admin"
              ]
            }
          },
          "required": [
            "allowed_roles",
            "max_sensitivity_tier",
            "require_approval_above",
            "business_hours_only",
            "auto_approve_below_tier",
            "requires_second_approver",
            "approver_pool"
          ],
          "additionalProperties": false
        },
        "deploy_immediately": {
          "type": "boolean",
          "description": "false = draft for dashboard review; true = deploy immediately for low-sensitivity agents"
        }
      },
      "required": [
        "name",
        "description",
        "business_justification",
        "trigger",
        "actions",
        "governance",
        "deploy_immediately"
      ],
      "additionalProperties": false
    }
  • create_permission_setfinancemcp-org

    Create a new permission set for this organization. Defines which executive roles, capability level, agent governance mode, and surface access the set grants. Members assigned to this set inherit all settings.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Display name"
        },
        "description": {
          "type": "string",
          "description": "Optional description"
        },
        "capability_level": {
          "type": "string",
          "enum": [
            "admin",
            "editor",
            "viewer"
          ]
        },
        "assigned_roles": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "minItems": 1,
          "description": "Canonical executive role keys"
        },
        "surface_access": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Optional; defaults to [dashboard]"
        },
        "agent_governance_mode": {
          "type": "string",
          "enum": [
            "NOTIFY",
            "APPROVAL_REQUIRED",
            "RESTRICTED",
            "AUTONOMOUS"
          ]
        },
        "requires_mfa": {
          "type": "boolean",
          "description": "Default false"
        },
        "can_approve": {
          "type": "boolean",
          "description": "Default true"
        }
      },
      "required": [
        "name",
        "capability_level",
        "assigned_roles",
        "agent_governance_mode"
      ],
      "additionalProperties": false
    }
  • generate_regulatory_reportgovernancemcp-org

    Generates examination-ready regulatory evidence package — FS AI RMF, SR 11-7, OCC AI Risk, Board Governance, or FFIEC Tech Risk — cryptographically hashed for tamper detection. Returns report ID for OCC, Federal Reserve, and FDIC examination teams.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "reportType": {
          "type": "string",
          "enum": [
            "FS_AI_RMF",
            "SR_11_7",
            "OCC_AI_RISK",
            "BOARD_GOVERNANCE",
            "INTERNAL_AUDIT",
            "FFIEC_TECH_RISK"
          ]
        },
        "daysBack": {
          "type": "number",
          "default": 90
        }
      },
      "required": [
        "reportType"
      ]
    }
  • generate_strategyfinancemcp-org

    Generate a strategic plan from organization intelligence, benchmark posture, and role-prioritized opportunity analysis.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_access_policiesfinancemcp-org

    Returns all access policies configured for this organization — assigned roles, capability levels, agent governance modes, surface access, and SSO group mappings. Used by IT admins verifying governance posture and compliance configuration.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • get_adoption_stagefinancemcp-org

    Returns this organization's FS AI RMF Adoption Stage — INITIAL to EMBEDDED — with applicable control count from 21 to 230 and priority remediation controls. Based on Treasury framework six-dimension maturity questionnaire.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • get_agent_executionfinancemcp-org

    Returns complete details of a single AI agent execution — status, sensitivity tier, approval chain, vote history, cryptographic hash, justification, and writeback outcome. Provides full EU AI Act Article 14 audit evidence for compliance officers, approvers, and supervisors review of a specific agent action.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "execution_id": {
          "type": "string",
          "minLength": 1,
          "description": "The UUID of the agent execution to retrieve."
        }
      },
      "required": [
        "execution_id"
      ]
    }
  • get_agent_inventoryfinancemcp-org

    Returns real-time inventory of all AI agents deployed for this organization — role, governance mode, authorized users, connected integrations, approval rate, and risk score. Satisfies FS AI RMF MP-3.1 agent inventory control for regulatory examination.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "includeInactive": {
          "type": "boolean",
          "description": "Include suspended agents."
        }
      }
    }
  • get_ai_consensus_on_topicintelligencex402-paidtier: atomic

    Ai Consensus On Topic benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "topic": {
          "type": "string"
        },
        "category": {
          "type": "string"
        }
      },
      "required": [
        "topic"
      ]
    }
  • get_aml_regulatory_benchmarkgovernancex402-paidtier: atomic

    Aml Regulatory Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "institution_type": {
          "type": "string",
          "enum": [
            "bank",
            "crypto_exchange",
            "money_services",
            "all"
          ]
        },
        "focus": {
          "type": "string",
          "enum": [
            "enforcement",
            "sar_filing",
            "ofac",
            "all"
          ]
        }
      }
    }
  • get_asc_benchmarkfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_asc_cost_benchmarkfinancex402-paidtier: atomic

    Asc Cost Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "specialty": {
          "type": "string"
        },
        "state": {
          "type": "string"
        }
      }
    }
  • get_asset_sbii_scorefinancex402-paidtier: atomic

    Asset Sbii Score benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "asset_class": {
          "type": "string",
          "description": "Asset class label to match citations"
        }
      },
      "required": [
        "asset_class"
      ]
    }
  • get_audit_fee_benchmarkfinancex402-paidtier: atomic

    Audit Fee Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "annual_revenue_usd": {
          "type": "number"
        },
        "auditor_tier": {
          "type": "string",
          "enum": [
            "big4",
            "national",
            "regional"
          ]
        },
        "industry": {
          "type": "string"
        }
      },
      "required": [
        "annual_revenue_usd"
      ]
    }
  • get_bank_financial_intelligencefinancemcp-org

    Returns JSON assets, deposits, capital ratios, loan quality versus peers for bank credit analysts querying FDIC-sourced intel by bank_name. Example B assets institution peer band context. Bank balance-sheet benchmark.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "bank_name": {
          "type": "string"
        }
      },
      "required": [
        "bank_name"
      ]
    }
  • get_bank_regulatory_benchmarkgovernancex402-paidtier: atomic

    Bank Regulatory Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "asset_size_tier": {
          "type": "string",
          "enum": [
            "community_under_1b",
            "regional_1b_10b",
            "large_regional_10b_100b",
            "money_center_over_100b"
          ]
        },
        "bank_type": {
          "type": "string",
          "enum": [
            "commercial",
            "savings",
            "cooperative"
          ]
        }
      },
      "required": [
        "asset_size_tier"
      ]
    }
  • get_billing_coding_riskfinancex402-paidtier: atomic

    Billing Coding Risk benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "specialty": {
          "type": "string"
        },
        "level_4_5_percentage": {
          "type": "number",
          "description": "Percentage of E/M claims at level 4 or 5"
        },
        "annual_claim_volume": {
          "type": "number"
        }
      }
    }
  • get_brand_momentumfinancex402-paidtier: atomic

    Brand Momentum benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "brand_name": {
          "type": "string",
          "description": "Brand name to look up"
        }
      },
      "required": [
        "brand_name"
      ]
    }
  • get_business_memoryfinancemcp-org

    Returns persistent org context JSON — name, industry, location, key vendors, and business model — used to prime intelligence briefs. May return unavailable error if memory not yet initialized. Run get_org_intelligence first to populate context.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_cac_benchmarkfinancex402-paidtier: atomic

    Cac Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string"
        },
        "gtm_motion": {
          "type": "string",
          "description": "sales_led, product_led, or channel"
        },
        "ltv_usd": {
          "type": "number",
          "description": "Optional: LTV for LTV:CAC ratio calc"
        }
      },
      "required": [
        "industry"
      ]
    }
  • get_cap_rate_benchmarkfinancex402-paidtier: atomic

    Cap Rate Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "asset_class": {
          "type": "string",
          "enum": [
            "multifamily",
            "industrial",
            "office",
            "retail_strip",
            "retail_mall",
            "hospitality",
            "self_storage",
            "senior_housing"
          ]
        },
        "market_tier": {
          "type": "string",
          "enum": [
            "gateway",
            "secondary",
            "tertiary"
          ]
        },
        "region": {
          "type": "string",
          "enum": [
            "northeast",
            "southeast",
            "midwest",
            "southwest",
            "west"
          ]
        }
      },
      "required": [
        "asset_class"
      ]
    }
  • get_category_ai_leadersintelligencex402-paidtier: atomic

    Category Ai Leaders benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_category_disruption_signalintelligencex402-paidtier: atomic

    Category Disruption Signal benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_category_spend_benchmarkintelligencex402-paidtier: standard

    Category Spend Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string",
          "description": "Software or service category"
        },
        "company_size": {
          "type": "string"
        },
        "industry": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_ceo_brieffinancemcp-org

    Generate comprehensive CEO intelligence brief — organization spend posture, benchmark positioning, top risk/opportunity vectors, role-level highlights, and immediate board-ready priorities.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_cfo_brieffinancemcp-org

    Generate comprehensive CFO intelligence brief — spend posture, benchmark variance, renewal risk, and cash-impact priorities for finance leadership.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_cfpb_complaint_intelligencefinancemcp-org

    Returns CFPB consumer complaint rollup JSON for risk teams by company_name with optional product filter. Synced complaint volume and issue themes — not legal advice. Consumer finance complaint surveillance.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "company_name": {
          "type": "string"
        },
        "product": {
          "type": "string"
        }
      },
      "required": [
        "company_name"
      ]
    }
  • get_chain_tvl_benchmarkcryptox402-freetier: atomic

    Chain Tvl Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "sort_by": {
          "type": "string",
          "enum": [
            "tvl",
            "change_1d",
            "change_7d"
          ]
        },
        "limit": {
          "type": "number",
          "minimum": 1,
          "maximum": 50
        }
      }
    }
  • get_chro_brieffinancemcp-org

    Generate comprehensive CHRO intelligence brief — workforce tooling efficiency, compensation pressure, and retention-related operating signals.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_climate_risk_benchmarkfinancex402-paidtier: atomic

    Climate Risk Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "property_type": {
          "type": "string",
          "enum": [
            "commercial",
            "residential",
            "industrial",
            "all"
          ]
        },
        "risk_type": {
          "type": "string",
          "enum": [
            "physical",
            "transition",
            "all"
          ]
        },
        "region": {
          "type": "string",
          "enum": [
            "southeast",
            "northeast",
            "midwest",
            "southwest",
            "west",
            "national"
          ]
        }
      }
    }
  • get_cmo_brieffinancemcp-org

    Generate comprehensive CMO intelligence brief — marketing stack spend, channel efficiency, attribution risk, and optimization priorities.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_cms_facility_benchmarkhealthcarex402-paidtier: atomic

    Cms Facility Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "bed_size": {
          "type": "number"
        },
        "state": {
          "type": "string"
        },
        "hospital_type": {
          "type": "string"
        }
      },
      "required": [
        "bed_size",
        "state"
      ]
    }
  • get_cms_open_payments_profilehealthcarex402-paidtier: atomic

    Cms Open Payments Profile benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "recipient_name": {
          "type": "string"
        },
        "program_year": {
          "type": "number"
        },
        "manufacturer_name": {
          "type": "string"
        }
      },
      "required": [
        "recipient_name"
      ]
    }
  • get_cms_star_ratinghealthcarex402-freetier: atomic

    Cms Star Rating benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "hospital_name": {
          "type": "string"
        },
        "current_star_rating": {
          "type": "number",
          "minimum": 1,
          "maximum": 5
        },
        "state": {
          "type": "string"
        }
      }
    }
  • get_commodity_benchmarkfinancex402-paidtier: atomic

    Commodity Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string",
          "enum": [
            "energy",
            "metals",
            "agriculture",
            "all"
          ]
        }
      }
    }
  • get_company_salary_disclosurefinancex402-paidtier: atomic

    Company Salary Disclosure benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "company_name": {
          "type": "string"
        },
        "job_title": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "fiscal_year": {
          "type": "number"
        }
      },
      "required": [
        "company_name"
      ]
    }
  • get_competitive_displacement_signalintelligencex402-paidtier: atomic

    Competitive Displacement Signal benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_compliance_coveragegovernancemcp-org

    Returns FS AI RMF compliance coverage across all configured FS AI RMF control objectives — implemented, partial, roadmap, and at-risk counts by GOVERN, MAP, MEASURE, MANAGE functions. The full FS AI RMF framework covers 230 objectives; coverage percentage reflects your organization's current implementation progress toward examination readiness. Generates SR 11-7 evidence for OCC, Federal Reserve, and FDIC review.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "nistFunction": {
          "type": "string",
          "enum": [
            "GOVERN",
            "MAP",
            "MEASURE",
            "MANAGE"
          ],
          "description": "Filter by NIST function."
        },
        "status": {
          "type": "string",
          "enum": [
            "IMPLEMENTED",
            "PARTIAL",
            "ROADMAP",
            "AT_RISK"
          ],
          "description": "Filter by implementation status."
        }
      }
    }
  • get_construction_cost_benchmarkfinancex402-paidtier: atomic

    Construction Cost Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "building_type": {
          "type": "string",
          "enum": [
            "single_family",
            "multifamily_wood_frame",
            "multifamily_concrete",
            "office_class_a",
            "office_class_b",
            "industrial_warehouse",
            "retail_strip",
            "medical_office",
            "hotel",
            "self_storage"
          ]
        },
        "region": {
          "type": "string",
          "enum": [
            "national",
            "northeast",
            "southeast",
            "midwest",
            "southwest",
            "west_coast"
          ]
        },
        "construction_class": {
          "type": "string",
          "enum": [
            "A",
            "B",
            "C"
          ]
        }
      },
      "required": [
        "building_type"
      ]
    }
  • get_consumer_sentiment_benchmarkfinancex402-paidtier: atomic

    Consumer Sentiment Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "focus": {
          "type": "string",
          "enum": [
            "sentiment",
            "spending",
            "saving",
            "all"
          ]
        }
      }
    }
  • get_coo_brieffinancemcp-org

    Generate comprehensive COO intelligence brief — operating efficiency posture, process bottlenecks, and near-term execution priorities.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_corporate_debt_benchmarkfinancex402-paidtier: atomic

    Corporate Debt Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string"
        },
        "credit_rating_tier": {
          "type": "string",
          "enum": [
            "investment_grade",
            "bb",
            "b",
            "ccc_and_below",
            "unrated"
          ]
        }
      },
      "required": [
        "industry"
      ]
    }
  • get_cre_debt_benchmarkfinancex402-paidtier: atomic

    Cre Debt Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "property_type": {
          "type": "string",
          "enum": [
            "multifamily",
            "industrial",
            "office",
            "retail_strip",
            "retail_mall",
            "hospitality",
            "self_storage",
            "senior_housing"
          ]
        },
        "lender_type": {
          "type": "string",
          "enum": [
            "bank",
            "agency_fannie_freddie",
            "cmbs",
            "life_company",
            "debt_fund",
            "bridge"
          ]
        }
      },
      "required": [
        "property_type"
      ]
    }
  • get_credit_spread_benchmarkfinancex402-paidtier: atomic

    Credit Spread Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "rating_tier": {
          "type": "string",
          "enum": [
            "all",
            "ig",
            "hy",
            "bbb"
          ]
        }
      }
    }
  • get_credit_union_benchmarkfinancex402-paidtier: atomic

    Credit Union Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "asset_size_tier": {
          "type": "string",
          "enum": [
            "under_100m",
            "100m_500m",
            "500m_1b",
            "over_1b"
          ]
        },
        "charter_type": {
          "type": "string",
          "enum": [
            "federal",
            "state"
          ]
        }
      },
      "required": [
        "asset_size_tier"
      ]
    }
  • get_cro_brieffinancemcp-org

    Generate comprehensive CRO intelligence brief — pipeline posture, revenue risk indicators, GTM vendor efficiency, and execution priorities.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_crypto_correlation_benchmarkcryptox402-paidtier: atomic

    Crypto Correlation Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "period": {
          "type": "string",
          "enum": [
            "7d",
            "30d",
            "90d"
          ]
        }
      }
    }
  • get_cto_brieffinancemcp-org

    Generate comprehensive CTO intelligence brief — technology cost posture, integration health, architecture risk, and optimization priorities.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_cx_brieffinancemcp-org

    Generate comprehensive CX intelligence brief — customer-facing stack posture, service performance risk, and experience optimization opportunities.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_dao_treasury_benchmarkcryptox402-paidtier: atomic

    Dao Treasury Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "min_treasury_usd": {
          "type": "number"
        },
        "sort_by": {
          "type": "string",
          "enum": [
            "treasury",
            "stablecoin_pct"
          ]
        }
      }
    }
  • get_data_lineagefinancemcp-org

    Returns field-level AI synthesis data lineage records — integration source, fields accessed, authorization, and classification. Satisfies FS AI RMF MP-2.1 and SR 11-7 data lineage requirements for regulated financial institutions.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "synthesisId": {
          "type": "string"
        },
        "integrationName": {
          "type": "string"
        },
        "daysBack": {
          "type": "number",
          "default": 30
        },
        "limit": {
          "type": "number",
          "default": 50
        }
      }
    }
  • get_decision_briefintelligencex402-paidtier: premium

    Premium composite decision brief: Claude synthesizes a non-org-specific strategic briefing from public frameworks and benchmarks only (no internal data). Cryptographically attested response for provenance assurance. Use after payment via x402; for org-grounded briefs use authenticated MCP.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_defi_yield_benchmarkcryptox402-paidtier: atomic

    Defi Yield Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "protocol": {
          "type": "string"
        },
        "asset": {
          "type": "string"
        }
      }
    }
  • get_development_pro_forma_benchmarkfinancex402-paidtier: atomic

    Development Pro Forma Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "product_type": {
          "type": "string",
          "enum": [
            "multifamily_market_rate",
            "multifamily_affordable",
            "single_family_build_to_rent",
            "industrial",
            "office",
            "retail",
            "mixed_use",
            "self_storage"
          ]
        },
        "market_tier": {
          "type": "string",
          "enum": [
            "gateway",
            "secondary",
            "tertiary"
          ]
        }
      },
      "required": [
        "product_type"
      ]
    }
  • get_earnings_quality_benchmarkfinancex402-paidtier: atomic

    Earnings Quality Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "sector": {
          "type": "string",
          "enum": [
            "technology",
            "healthcare",
            "financial_services",
            "consumer_staples",
            "energy",
            "industrials",
            "real_estate",
            "utilities",
            "materials",
            "telecom"
          ]
        },
        "revenue_recognition_model": {
          "type": "string",
          "enum": [
            "subscription",
            "project_based",
            "product_sales",
            "financial_services",
            "mixed"
          ]
        }
      },
      "required": [
        "sector"
      ]
    }
  • get_ehr_cost_per_bedhealthcarex402-paidtier: atomic

    Ehr Cost Per Bed benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        },
        "bed_count": {
          "type": "number"
        },
        "annual_cost": {
          "type": "number"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_eia_energy_public_snapshotfinancemcp-org

    Returns EIA spot-price style JSON for commodity strategists when server EIA API key is configured; otherwise requires_configuration with null prices. Not realtime exchange prints. Energy price strip dependency.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • get_elliott_wavesfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_employer_h1b_wagesfinancex402-paidtier: atomic

    Employer H1B Wages benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "employer_name": {
          "type": "string"
        }
      },
      "required": [
        "employer_name"
      ]
    }
  • get_esg_benchmarkfinancex402-paidtier: atomic

    Esg Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "sector": {
          "type": "string",
          "enum": [
            "technology",
            "energy",
            "financial_services",
            "healthcare",
            "manufacturing",
            "all"
          ]
        },
        "focus": {
          "type": "string",
          "enum": [
            "carbon",
            "social",
            "governance",
            "all"
          ]
        }
      }
    }
  • get_eu_ai_act_coverageintelligencex402-freetier: standard

    EU AI Act framework control library with article mappings, NIST-aligned control objectives, and implementation-status reference fields for high-risk AI governance programs. Source: Stratalize compliance control catalog. Updated as framework mappings evolve. Cryptographically attested response for provenance assurance. Use for EU AI Act readiness reviews, control gap framing, and audit prep.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "nistFunction": {
          "type": "string",
          "enum": [
            "GOVERN",
            "MAP",
            "MEASURE",
            "MANAGE"
          ],
          "description": "Filter by NIST function."
        }
      }
    }
  • get_federal_contract_intelligencefinancemcp-org

    Returns USASpending-synced obligation rollups JSON for government affairs teams by vendor_name with optional agency_name, naics_code, fiscal_year. Federal vendor spend intelligence. Contract obligation lookup.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        },
        "agency_name": {
          "type": "string"
        },
        "naics_code": {
          "type": "string"
        },
        "fiscal_year": {
          "type": "number"
        },
        "state": {
          "type": "string",
          "description": "Two-letter state code for place of performance (e.g. PA, IL)."
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_fomc_rate_probabilityfinancex402-paidtier: atomic

    Fomc Rate Probability benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • get_fx_rate_benchmarkfinancex402-paidtier: atomic

    Fx Rate Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "base_currency": {
          "type": "string",
          "enum": [
            "USD",
            "EUR",
            "GBP"
          ]
        }
      }
    }
  • get_gas_benchmarkcryptox402-freetier: atomic

    Gas Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "chain": {
          "type": "string",
          "enum": [
            "ethereum",
            "base",
            "solana",
            "all"
          ]
        }
      }
    }
  • get_gc_brieffinancemcp-org

    Generate comprehensive GC intelligence brief — legal vendor posture, contract risk, and governance/control priorities for counsel.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_github_ecosystem_intelligencefinancemcp-org

    Returns live GitHub organization and repository stats JSON for developer relations teams via public API — subject to rate limits. org_or_company footprint query. Open-source ecosystem snapshot.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "org_or_company": {
          "type": "string"
        }
      },
      "required": [
        "org_or_company"
      ]
    }
  • get_global_equity_benchmarkfinancex402-paidtier: atomic

    Global Equity Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "region": {
          "type": "string",
          "enum": [
            "us",
            "europe",
            "asia",
            "emerging",
            "all"
          ]
        }
      }
    }
  • get_governance_health_scoregovernancemcp-org

    Returns composite AI governance health score 0-100 with six weighted dimensions — FS AI RMF coverage (35%), lineage capture (20%), anomaly status (20%), agent governance (15%), human oversight (10%), and explainability readiness. Score uses 230-control FS AI RMF as denominator. Authoritative for CCO board reporting and examination preparation. Satisfies SR 11-7 Section 1 model risk governance documentation.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • get_gpo_contract_benchmarkfinancex402-paidtier: atomic

    Gpo Contract Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      }
    }
  • get_gpo_leakage_scorefinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_healthcare_category_intelligenceintelligencex402-paidtier: standard

    Healthcare Category Intelligence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_healthcare_cfo_brieffinancemcp-org

    Generate a comprehensive healthcare CFO intelligence brief with CMS peer cohort benchmarks, vendor spend analysis, staffing cost intelligence, GPO leakage score, and negotiation priorities. Requires financial data connection.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_healthcare_chro_brieffinancemcp-org

    Generate healthcare CHRO intelligence brief with turnover benchmarks, compensation analysis, travel nurse rate intelligence, staffing agency risk assessment, and workforce optimization opportunities.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_healthcare_contract_analysisfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_healthcare_cto_brieffinancemcp-org

    Healthcare CTO intelligence brief — EHR cost optimization, IT spend vs net patient revenue benchmarks, AI clinical adoption rates, cybersecurity posture benchmarks, interoperability readiness, and cloud migration status. Requires data connection.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_healthcare_vendor_market_rateintelligencemcp-org

    Returns JSON structured market-rate payload for supply chain and IT sourcing any healthcare vendor category — EHR, staffing, food, waste, med-surg. Example maintenance $/bed style hints embedded. CMS plus Stratalize industry composite.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        },
        "category": {
          "type": "string"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_hospital_care_compare_qualityhealthcarex402-freetier: atomic

    Hospital Care Compare Quality benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "hospital_name": {
          "type": "string"
        }
      },
      "required": [
        "hospital_name"
      ]
    }
  • get_hospital_supply_chain_benchmarkhealthcarex402-paidtier: atomic

    Hospital Supply Chain Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "bed_size": {
          "type": "number"
        },
        "state": {
          "type": "string"
        }
      },
      "required": [
        "bed_size"
      ]
    }
  • get_housing_supply_benchmarkrealestatex402-paidtier: atomic

    Housing Supply Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "region": {
          "type": "string",
          "enum": [
            "national",
            "northeast",
            "south",
            "midwest",
            "west"
          ]
        },
        "structure_type": {
          "type": "string",
          "enum": [
            "single_family",
            "multifamily",
            "all"
          ]
        }
      }
    }
  • get_hud_fair_market_rentrealestatex402-freetier: atomic

    Hud Fair Market Rent benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "metro_area": {
          "type": "string"
        },
        "bedroom_count": {
          "type": "number",
          "minimum": 0,
          "maximum": 4
        }
      },
      "required": [
        "metro_area"
      ]
    }
  • get_imf_weo_macro_snapshotfinancex402-paidtier: atomic

    Imf Weo Macro Snapshot benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • get_industry_spend_benchmarkfinancex402-paidtier: standard

    Industry Spend Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string"
        },
        "company_size": {
          "type": "string"
        }
      },
      "required": [
        "industry"
      ]
    }
  • get_industry_spend_profilefinancemcp-org

    Returns JSON industry spend bands, category ranges, and outlier flags by employee_count for CFOs sizing SaaS and ops stacks. Example healthcare vs manufacturing tier curves from Stratalize tier-1 public composite. Workforce-scaled vendor benchmark.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string"
        },
        "employee_count": {
          "type": "number"
        }
      },
      "required": [
        "industry"
      ]
    }
  • get_inflation_benchmarkfinancex402-freetier: atomic

    Inflation Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "measure": {
          "type": "string",
          "enum": [
            "cpi",
            "pce",
            "breakeven",
            "components",
            "all"
          ]
        }
      }
    }
  • get_initial_org_snapshotfinancemcp-org

    One-time style onboarding snapshot: vendors, benchmarks, pattern signals (redundancy, concentration, renewals), role priorities, and data gaps. Cached 24h per org until vendor or integration counts change.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_insurance_benchmarkfinancex402-paidtier: atomic

    Insurance Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "line_of_business": {
          "type": "string",
          "enum": [
            "property_casualty",
            "commercial_liability",
            "workers_comp",
            "auto",
            "homeowners",
            "life",
            "health",
            "specialty"
          ]
        },
        "company_size": {
          "type": "string",
          "enum": [
            "small",
            "mid_size",
            "large"
          ]
        }
      },
      "required": [
        "line_of_business"
      ]
    }
  • get_integration_statusfinancemcp-org

    Get the status of all connected financial integrations for this organization — which platforms are connected, when they last synced, and whether they are healthy.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_intelligence_spend_summaryfinancemcp-org

    Summarizes spend from the latest saved intelligence report for this org (or a specific report by id): totals, vendor count, industry/location, and top 5 vendors by amount.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_investment_category_signalintelligencex402-paidtier: atomic

    Investment Category Signal benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_labor_market_benchmarkfinancex402-paidtier: atomic

    Labor Market Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "focus": {
          "type": "string",
          "enum": [
            "employment",
            "wages",
            "openings",
            "all"
          ]
        }
      }
    }
  • get_ma_multiples_benchmarkfinancex402-paidtier: atomic

    Ma Multiples Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string",
          "enum": [
            "technology",
            "healthcare",
            "financial_services",
            "manufacturing",
            "retail",
            "energy",
            "consumer_staples",
            "industrials",
            "real_estate",
            "materials",
            "telecom",
            "legal_services"
          ]
        },
        "deal_size_tier": {
          "type": "string",
          "enum": [
            "under_50m",
            "50m_250m",
            "250m_1b",
            "over_1b"
          ]
        }
      },
      "required": [
        "industry"
      ]
    }
  • get_macro_market_signalintelligencex402-paidtier: atomic

    Macro Market Signal benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "signal_type": {
          "type": "string"
        }
      }
    }
  • get_macro_playbookfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_market_intelligence_briefintelligencemcp-org

    Returns JSON market_summary string, up to six key_themes, sentiment_skew counts for strategy consultants researching an industry from ai_citation_results. Example default themes consolidation or AI copilots when sparse. AI industry brief.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string"
        },
        "topic": {
          "type": "string"
        }
      },
      "required": [
        "industry"
      ]
    }
  • get_market_structure_signalintelligencex402-paidtier: atomic

    Market Structure Signal benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_morning_briefingfinancemcp-org

    Returns a structured morning briefing for the authenticated user's assigned roles. Designed for rendering in Claude, ChatGPT, or any MCP-compatible AI interface. Includes decision queue, vital signs, pending approvals, and top 3 actions for the day. Call at session start for daily situational awareness. Requires API key scopes read:roles, read:actions, and read:intelligence.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • get_mortgage_market_benchmarkrealestatex402-freetier: atomic

    Mortgage Market Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "loan_type": {
          "type": "string",
          "enum": [
            "conventional",
            "fha",
            "va",
            "jumbo"
          ]
        },
        "state": {
          "type": "string"
        }
      }
    }
  • get_ncreif_return_benchmarkrealestatex402-paidtier: atomic

    Ncreif Return Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "property_type": {
          "type": "string",
          "enum": [
            "all_property",
            "office",
            "industrial",
            "retail",
            "apartment",
            "hotel"
          ]
        },
        "region": {
          "type": "string",
          "enum": [
            "national",
            "east",
            "midwest",
            "south",
            "west"
          ]
        },
        "period": {
          "type": "string",
          "enum": [
            "1y",
            "3y",
            "5y",
            "10y"
          ]
        }
      }
    }
  • get_open_anomaliesfinancemcp-org

    Returns active AI governance risk anomalies — volume spikes, time deviations, scope creep, approval rate drops. Severity-scored and investigation-tracked for CCO review and FS AI RMF MEASURE domain compliance.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "severity": {
          "type": "string",
          "enum": [
            "LOW",
            "MEDIUM",
            "HIGH",
            "CRITICAL"
          ]
        },
        "limit": {
          "type": "number",
          "default": 20
        }
      }
    }
  • get_options_iv_benchmarkcryptox402-paidtier: atomic

    Options Iv Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "asset": {
          "type": "string",
          "enum": [
            "BTC",
            "ETH",
            "all"
          ]
        }
      }
    }
  • get_org_health_scorefinancemcp-org

    Stratalize platform health score 0 to 100 with sub-scores: data coverage, integration count, benchmark rows, and report quality. Example: Score 25 — 0 integrations, 4 benchmarks, 5 reports. Use to identify data gaps before generating executive briefs.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_org_intelligencefinancemcp-org

    Get comprehensive organization intelligence — spend summary, vendor matrix, benchmark positions, recent strategies, integration health, and MCP analytics in one call

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_payer_intelligencehealthcarex402-paidtier: standard

    Payer Intelligence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "specialty": {
          "type": "string"
        },
        "payer_name": {
          "type": "string"
        }
      }
    }
  • get_pe_healthcare_portfolio_intelligencefinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_pe_portfolio_benchmarkfinancex402-paidtier: atomic

    Pe Portfolio Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "company_count": {
          "type": "number"
        },
        "sector": {
          "type": "string"
        }
      }
    }
  • get_pe_return_benchmarkfinancex402-paidtier: atomic

    Pe Return Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "strategy": {
          "type": "string",
          "enum": [
            "buyout",
            "growth_equity",
            "venture_capital",
            "real_estate_pe",
            "credit"
          ]
        },
        "vintage_year": {
          "type": "number"
        }
      },
      "required": [
        "strategy"
      ]
    }
  • get_pharmacy_spend_benchmarkhealthcarex402-paidtier: standard

    Pharmacy Spend Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "annual_pharmacy_spend": {
          "type": "number"
        },
        "bed_size": {
          "type": "number"
        },
        "annual_patient_days": {
          "type": "number"
        },
        "state": {
          "type": "string"
        },
        "enrolled_340b": {
          "type": "boolean"
        }
      }
    }
  • get_physician_comp_benchmarkhealthcarex402-paidtier: atomic

    Physician Comp Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "specialty": {
          "type": "string"
        },
        "state": {
          "type": "string"
        }
      },
      "required": [
        "specialty"
      ]
    }
  • get_physician_group_benchmarkhealthcaremcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_platform_divergencefinancex402-paidtier: atomic

    Platform Divergence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "brand_name": {
          "type": "string"
        }
      },
      "required": [
        "brand_name"
      ]
    }
  • get_portfolio_vendor_intelligenceintelligencemcp-org

    Returns JSON vendor_market_rate block using default medians when unspecified, brand index snapshot or accumulating note, competitive_displacement tallies for PE value creation leads. Composite diligence — not portco-specific spend.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_property_operating_benchmarkrealestatex402-paidtier: atomic

    Property Operating Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "property_type": {
          "type": "string",
          "enum": [
            "office_class_a",
            "office_class_b",
            "industrial",
            "multifamily",
            "retail_strip",
            "retail_regional_mall",
            "self_storage",
            "hotel"
          ]
        },
        "market_tier": {
          "type": "string",
          "enum": [
            "gateway",
            "secondary",
            "tertiary"
          ]
        }
      },
      "required": [
        "property_type"
      ]
    }
  • get_property_tax_benchmarkrealestatex402-paidtier: atomic

    Property Tax Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "state": {
          "type": "string",
          "minLength": 2,
          "maxLength": 2
        },
        "property_type": {
          "type": "string",
          "enum": [
            "commercial",
            "residential",
            "industrial",
            "multifamily"
          ]
        }
      },
      "required": [
        "state"
      ]
    }
  • get_provider_market_intelligenceintelligencemcp-org

    Returns NPI registry density and market-structure JSON for healthcare strategists by specialty and state with optional city. Synced provider counts — not patient access guarantee. Physician supply heatmap.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "specialty": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "city": {
          "type": "string"
        }
      },
      "required": [
        "specialty",
        "state"
      ]
    }
  • get_public_company_financialsfinancemcp-org

    Returns SEC EDGAR-cached statement snippets and KPI JSON for public equities analysts by company_name. US-listed fundamentals — stale cache possible. Public company financial lookup.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "company_name": {
          "type": "string"
        }
      },
      "required": [
        "company_name"
      ]
    }
  • get_public_market_multiplesfinancex402-paidtier: atomic

    Public Market Multiples benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "sector": {
          "type": "string",
          "enum": [
            "technology",
            "healthcare",
            "financial_services",
            "consumer_staples",
            "energy",
            "industrials",
            "real_estate",
            "utilities",
            "materials",
            "telecom"
          ]
        },
        "context": {
          "type": "string",
          "enum": [
            "acquisition",
            "ipo",
            "fundraising",
            "board_prep",
            "general"
          ]
        }
      },
      "required": [
        "sector"
      ]
    }
  • get_real_estate_debt_stress_benchmarkrealestatex402-paidtier: atomic

    Real Estate Debt Stress Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "property_type": {
          "type": "string",
          "enum": [
            "all_cre",
            "office",
            "retail",
            "multifamily",
            "hotel",
            "industrial"
          ]
        },
        "scenario": {
          "type": "string",
          "enum": [
            "base",
            "stress",
            "severe_stress"
          ]
        }
      }
    }
  • get_reit_benchmarkrealestatex402-paidtier: atomic

    Reit Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "property_sector": {
          "type": "string",
          "enum": [
            "all_equity",
            "multifamily",
            "industrial",
            "office",
            "retail",
            "net_lease",
            "self_storage",
            "healthcare",
            "data_center",
            "hotel",
            "diversified"
          ]
        }
      },
      "required": [
        "property_sector"
      ]
    }
  • get_rental_market_benchmarkrealestatex402-paidtier: atomic

    Rental Market Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "market_tier": {
          "type": "string",
          "enum": [
            "national",
            "gateway",
            "secondary",
            "sunbelt"
          ]
        },
        "unit_type": {
          "type": "string",
          "enum": [
            "studio",
            "one_bed",
            "two_bed",
            "three_bed"
          ]
        }
      }
    }
  • get_residential_market_benchmarkfinancex402-paidtier: atomic

    Residential Market Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public housing and real-estate market datasets. Updated monthly or quarterly. Cryptographically attested response for provenance assurance. Use for market comps, underwriting context, and portfolio stress checks.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "market_tier": {
          "type": "string",
          "enum": [
            "national",
            "gateway_metro",
            "secondary_metro",
            "tertiary"
          ]
        },
        "property_type": {
          "type": "string",
          "enum": [
            "single_family",
            "condo",
            "townhome"
          ]
        }
      }
    }
  • get_revenue_cycle_analysisfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_rwa_benchmarkcryptox402-paidtier: atomic

    Rwa Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string",
          "enum": [
            "treasuries",
            "real_estate",
            "credit",
            "all"
          ]
        }
      }
    }
  • get_saas_market_intelligenceintelligencex402-paidtier: standard

    Saas Market Intelligence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_saas_metrics_benchmarkintelligencex402-paidtier: atomic

    Saas Metrics Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "arr_usd": {
          "type": "number",
          "description": "Annual recurring revenue in USD"
        }
      },
      "required": [
        "arr_usd"
      ]
    }
  • get_saas_negotiation_playbookintelligencex402-paidtier: atomic

    Saas Negotiation Playbook benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string",
          "description": "Vendor name (e.g. Slack, Zoom, Salesforce)"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_salary_benchmarkfinancex402-paidtier: atomic

    Salary Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "job_title": {
          "type": "string"
        },
        "state": {
          "type": "string",
          "description": "Two-letter state code"
        },
        "industry": {
          "type": "string"
        }
      },
      "required": [
        "job_title"
      ]
    }
  • get_sector_ai_intelligenceintelligencex402-paidtier: standard

    Sector Ai Intelligence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "sector": {
          "type": "string"
        }
      },
      "required": [
        "sector"
      ]
    }
  • get_software_pricing_intelligencefinancex402-paidtier: standard

    Software Pricing Intelligence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        }
      },
      "required": [
        "category"
      ]
    }
  • get_spend_by_company_sizefinancex402-paidtier: standard

    Spend By Company Size benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_spend_summaryfinancemcp-org

    Get total spend by category for this organization. Returns total amount, breakdown by category with percentages, and transaction count for the specified period.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_stablecoin_yield_benchmarkcryptox402-paidtier: atomic

    Stablecoin Yield Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: On-chain RPC and protocol index feeds. Updated intraday. Cryptographically attested response for provenance assurance. Use for crypto monitoring, treasury policy, and volatility planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "asset": {
          "type": "string",
          "enum": [
            "USDC",
            "USDT",
            "DAI",
            "all"
          ]
        }
      }
    }
  • get_staffing_agency_markup_analysisfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_staffing_agency_markup_benchmarkfinancex402-paidtier: atomic

    Staffing Agency Markup Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "agency_name": {
          "type": "string"
        },
        "specialty": {
          "type": "string"
        }
      }
    }
  • get_stratalize_overviewfinancemcp-org

    Stratalize Overview benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_top_vendorsintelligencemcp-org

    Get the top vendors ranked by total spend for this organization. Returns vendor name, total spend, transaction count, category, and monthly average.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_top_vendors_by_categoryintelligencex402-paidtier: standard

    Top Vendors By Category benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "category": {
          "type": "string"
        },
        "limit": {
          "type": "number",
          "minimum": 1,
          "maximum": 50
        }
      },
      "required": [
        "category"
      ]
    }
  • get_trader_brieffinancemcp-org

    Generate comprehensive TRADER intelligence brief — market regime context, portfolio signal posture, and tactical risk/opportunity cues.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_trader_signalsintelligencemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_travel_nurse_agency_comparisonfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_travel_nurse_benchmarkfinancex402-paidtier: atomic

    Travel Nurse Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "specialty": {
          "type": "string"
        },
        "state": {
          "type": "string"
        }
      },
      "required": [
        "specialty",
        "state"
      ]
    }
  • get_travel_nurse_rate_benchmarkfinancemcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_uk_fca_coveragefinancex402-freetier: standard

    UK FCA PS7/24 model risk management control library with SM&CR, Consumer Duty, and operational resilience mappings for UK-regulated financial firms. Source: Stratalize compliance control catalog. Updated as framework mappings evolve. Cryptographically attested response for provenance assurance. Use for UK regulatory readiness, MRM program benchmarking, and governance documentation.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "nistFunction": {
          "type": "string",
          "enum": [
            "GOVERN",
            "MAP",
            "MEASURE",
            "MANAGE"
          ],
          "description": "Filter by NIST function."
        }
      }
    }
  • get_uspto_patent_intelligencefinancemcp-org

    Returns USPTO patent count and filing rollup JSON for IP strategists by assignee_name with optional patent_year. Assignee portfolio intelligence — not claim-level prosecution status. Patent landscape snapshot.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "assignee_name": {
          "type": "string"
        },
        "patent_year": {
          "type": "number"
        }
      },
      "required": [
        "assignee_name"
      ]
    }
  • get_value_based_care_performancefinancex402-paidtier: atomic

    Value Based Care Performance benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public healthcare program datasets. Updated monthly to quarterly. Cryptographically attested response for provenance assurance. Use for care quality benchmarking, operations review, and reimbursement planning.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "program_type": {
          "type": "string",
          "enum": [
            "mssp",
            "bpci",
            "mips",
            "apm",
            "direct_contracting"
          ]
        },
        "current_vbc_revenue_pct": {
          "type": "number",
          "description": "Percentage of revenue from value-based contracts"
        },
        "specialty": {
          "type": "string"
        },
        "bed_size": {
          "type": "number"
        }
      }
    }
  • get_vendor_alternativesintelligencex402-paidtier: standard

    Vendor Alternatives benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        },
        "reason": {
          "type": "string",
          "description": "Reason for switching: cost, features, support"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_vendor_benchmarkintelligencemcp-org

    Get market benchmark data for a specific vendor — whether this organization is paying above or below market, the typical price range, and negotiation guidance. Returns cached data if available; otherwise instructs user to load benchmark in Stratalize.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_vendor_contract_intelligenceintelligencex402-paidtier: standard

    Vendor Contract Intelligence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_vendor_market_rateintelligencex402-paidtier: standard

    Vendor Market Rate benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string",
          "description": "Vendor name to look up"
        },
        "industry": {
          "type": "string",
          "description": "Optional industry filter"
        },
        "company_size": {
          "type": "string",
          "description": "Optional company size segment"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_vendor_negotiation_intelligenceintelligencex402-paidtier: standard

    Vendor Negotiation Intelligence benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_vendor_risk_signalintelligencex402-paidtier: standard

    Vendor Risk Signal benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Stratalize composite market intelligence. Updated weekly. Cryptographically attested response for provenance assurance. Use for vendor strategy, category scouting, and procurement benchmarking.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "vendor_name": {
          "type": "string"
        }
      },
      "required": [
        "vendor_name"
      ]
    }
  • get_vendor_spend_vs_cms_benchmarkhealthcaremcp-org

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • get_venture_benchmarkfinancex402-paidtier: atomic

    Venture Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "stage": {
          "type": "string",
          "enum": [
            "pre_seed",
            "seed",
            "series_a",
            "series_b",
            "series_c"
          ]
        },
        "sector": {
          "type": "string",
          "enum": [
            "saas",
            "fintech",
            "healthcare_tech",
            "consumer",
            "deep_tech",
            "marketplace"
          ]
        }
      },
      "required": [
        "stage"
      ]
    }
  • get_wacc_benchmarkfinancex402-paidtier: atomic

    Wacc Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "sector": {
          "type": "string",
          "enum": [
            "technology",
            "healthcare",
            "financial_services",
            "consumer_staples",
            "energy",
            "industrials",
            "real_estate",
            "utilities",
            "materials",
            "telecom"
          ]
        },
        "market_cap_tier": {
          "type": "string",
          "enum": [
            "micro",
            "small",
            "mid",
            "large",
            "mega"
          ]
        }
      },
      "required": [
        "sector"
      ]
    }
  • get_working_capital_benchmarkfinancex402-paidtier: atomic

    Working Capital Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string",
          "enum": [
            "saas",
            "healthcare",
            "legal",
            "manufacturing",
            "retail",
            "financial_services"
          ]
        },
        "company_size": {
          "type": "string",
          "enum": [
            "small",
            "mid_market",
            "large_enterprise"
          ]
        }
      },
      "required": [
        "industry"
      ]
    }
  • get_workplace_safety_benchmarkfinancex402-paidtier: atomic

    Workplace Safety Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Public economic and regulatory datasets. Updated on source release cadence. Cryptographically attested response for provenance assurance. Use for market intelligence, baseline comparison, and planning support.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "company_or_industry": {
          "type": "string"
        },
        "naics_code": {
          "type": "string"
        },
        "state": {
          "type": "string"
        }
      },
      "required": [
        "company_or_industry"
      ]
    }
  • get_yield_curve_benchmarkfinancex402-freetier: atomic

    Yield Curve Benchmark benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "tenor": {
          "type": "string",
          "enum": [
            "2y",
            "10y",
            "30y",
            "all"
          ]
        }
      }
    }
  • get_yield_curve_datafinancex402-paidtier: atomic

    Yield Curve Data benchmark output with normalized metrics, trend context, and comparable reference fields. Source: Authoritative US economic data sources. Updated daily. Cryptographically attested response for provenance assurance. Use for macro analysis, policy tracking, and scenario baselining.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {}
    }
  • governance_session_closegovernancemcp-org

    Closes a governed Stratalize MCP conversation after attestation-token verification, writes immutable session summary metrics, and returns a signed attestation hash for independent post-session validation workflows.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "session_id": {
          "type": "string"
        },
        "session_attestation_token": {
          "type": "string"
        },
        "interaction_count": {
          "type": "number"
        },
        "refusal_count": {
          "type": "number"
        }
      },
      "required": [
        "session_id",
        "session_attestation_token",
        "interaction_count",
        "refusal_count"
      ]
    }
  • governance_session_initgovernancemcp-org

    Starts a governed Stratalize MCP conversation by validating a user API key, resolving the active intelligence profile, issuing a cryptographic session token, and writing immutable session-init audit evidence.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "session_id": {
          "type": "string"
        },
        "client_identifier": {
          "type": "string"
        },
        "user_api_key": {
          "type": "string"
        }
      },
      "required": [
        "session_id",
        "client_identifier",
        "user_api_key"
      ]
    }
  • invite_org_memberfinancemcp-org

    Invite a new member to this organization. Generates a secure invite link and assigns them to a permission set. Email delivery is not automated — return the invite link for the admin to share. Caller must have admin capability.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "description": "Valid email address"
        },
        "permission_set_id": {
          "type": "string",
          "format": "uuid",
          "description": "Optional permission set UUID"
        },
        "role": {
          "type": "string",
          "enum": [
            "admin",
            "editor",
            "viewer"
          ],
          "description": "Default viewer"
        },
        "assigned_roles": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Optional canonical role keys"
        },
        "message": {
          "type": "string",
          "description": "Optional personal note for the admin to share manually"
        }
      },
      "required": [
        "email"
      ],
      "additionalProperties": false
    }
  • list_agent_templatesfinancemcp-org

    List pre-built governed agent templates by industry and use case. Banking, healthcare, legal, HR, finance. Each template includes trigger type, action sequence, governance recommendation, and example prompt.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string"
        },
        "use_case": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • list_alertsfinancemcp-org

    Lists recent alert_log entries for this organization (type, message, sent time), newest first.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • list_benchmarksfinancemcp-org

    Lists org-scoped market benchmark rows (vendor, category, market range, confidence). Supports optional vendor name substring and confidence filter.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • list_org_actionsfinancemcp-org

    List AI-generated action items for this organization — pending recommendations, priorities, and strategic next steps from the latest intelligence brief

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • list_pending_agent_approvalsfinancemcp-org

    Returns up to 50 pending AI agent executions awaiting human approval for this org — execution ID, agent name, executive role, sensitivity tier, deadline, and step progress. Satisfies EU AI Act Article 14 oversight queue for compliance officers, approvers, and supervisors review.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "executive_role": {
          "type": "string",
          "description": "Filter by executive role context: CEO, CFO, CRO, CMO, CTO, CHRO, CX, GC, COO, TRADER."
        },
        "sensitivity_tier": {
          "type": "string",
          "enum": [
            "public",
            "internal",
            "confidential",
            "restricted",
            "eyes_only"
          ],
          "description": "Filter by sensitivity tier."
        },
        "limit": {
          "type": "number",
          "minimum": 1,
          "maximum": 50,
          "description": "Maximum number of pending approvals to return (default 20, max 50)."
        }
      }
    }
  • reject_agent_executionfinancemcp-org

    Rejects a pending AI agent execution — enforces four-eyes segregation of duties, records rejection reason to immutable HMAC-signed audit chain, and triggers SLA resolution. Rejection is permanent and cannot be reversed. EU AI Act Article 14 compliant for compliance officers, approvers, and supervisors oversight workflows.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "execution_id": {
          "type": "string",
          "minLength": 1,
          "description": "The UUID of the agent execution to reject."
        },
        "justification": {
          "type": "string",
          "description": "Written justification for the rejection. Required for confidential, restricted, and eyes_only sensitivity tiers (minimum 10 characters). Strongly recommended for all tiers; MCP enforces at least 10 characters for every rejection."
        }
      },
      "required": [
        "execution_id",
        "justification"
      ]
    }
  • stratalize_analyze_documentfinancemcp-org

    Analyze a document through Stratalize governed intelligence and return a job ID for asynchronous status polling.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • stratalize_get_document_statusfinancemcp-org

    Get status and result metadata for a previously submitted Stratalize document analysis job.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • stratalize_submit_document_writebackfinancemcp-org

    Execute approved writeback actions from a completed document intelligence analysis into connected systems.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • update_agentfinancemcp-org

    Modify an existing governed agent's definition, trigger, actions, or governance policy. Change is versioned and logged to the immutable audit chain. Returns updated agent summary.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "agent_id": {
          "type": "string",
          "format": "uuid",
          "description": "Agent definition UUID",
          "requires_auth": true
        },
        "updates": {
          "type": "object",
          "additionalProperties": {},
          "description": "Partial fields to merge into the agent definition and top-level row"
        }
      },
      "required": [
        "agent_id",
        "updates"
      ],
      "additionalProperties": false
    }
  • update_deal_stagefinancemcp-org

    Propose a CRM deal stage update for human approval. Creates a governed pending execution in the four-eyes approval queue. The deal is not updated until an authorized approver confirms. Every execution is HMAC-signed with a verifiable audit record.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {}
  • update_permission_setfinancemcp-org

    Update an existing permission set — change its name, assigned roles, capability level, agent governance mode, or surface access. Changes apply immediately to all members assigned to this set. Writes audit log entry.

    Pricing is returned in the 402 challenge for x402 tools; no dollar amounts in this catalog.

    Successful JSON responses include an Ed25519 _stratalize envelope (/docs/attestation).

    inputSchema preview
    {
      "type": "object",
      "properties": {
        "permission_set_id": {
          "type": "string",
          "format": "uuid"
        },
        "updates": {
          "type": "object",
          "additionalProperties": {},
          "description": "Any subset of: name, description, capability_level, assigned_roles, surface_access, agent_governance_mode, requires_mfa, can_approve, sso_group_mapping"
        }
      },
      "required": [
        "permission_set_id",
        "updates"
      ],
      "additionalProperties": false
    }