Model Context Protocol (MCP) Standard

Equip LLM agents with live actuarial context

Connect Claude Desktop, Cursor, and custom AI agents directly to InsurChain's live solvency tables, parametric triggers, and capital pool reserves via open-standard MCP.

npx -y @insurchain/mcp-server
View Config Specs

One-Click Claude Desktop Configuration

Add InsurChain as an official tool provider in your claude_desktop_config.json. Your AI can immediately answer questions about decentralized insurance health with zero manual data entry.

1

Generate your InsurChain API Key

Obtain a free or pro token with instant read access to all 48 protocol subgraphs.

2

Paste JSON config into Claude Desktop

Restart Claude, and the InsurChain wrench tool icon will appear automatically.

3

Ask autonomous risk questions

"What is Nexus Mutual's current MCR margin and has any parametric bridge trigger tripped today?"

claude_desktop_config.json
{
  "mcpServers": {
    "insurchain": {
      "command": "npx",
      "args": [
        "-y",
        "@insurchain/mcp-server@latest"
      ],
      "env": {
        "INSURCHAIN_API_KEY": "ic_live_79a0x88f2b...",
        "INSURCHAIN_ENV": "production"
      }
    }
  }
}

Exported Tools in MCP Schema

get_protocol_solvency Function Tool

Fetches live capital adequacy ratio, liquid reserves in USD, 99.5% Value-at-Risk margin, and historical loss ratios for any indexed decentralized insurance protocol.

args: { protocol_id: string, chain_id?: number, include_audit_history?: boolean }
simulate_exploit_impact Actuarial Copula

Simulates the solvency shock on primary capital vaults and secondary reinsurance tranches if a correlated smart contract breach drains a target pool.

args: { target_protocol: string, drain_amount_usd: number, contagion_depth?: number }
query_studio_sql Database Read

Executes parameterized, read-only SQL queries against InsurChain's institutional ClickHouse database with sub-50ms execution speed.

args: { sql_query: string, max_rows?: number }
get_parametric_triggers Oracle Status

Inspects real-time oracle health, price deviation bounds, and automated settlement triggers across weather, de-peg, and cross-chain bridge covers.

args: { trigger_category?: 'all' | 'depeg' | 'bridge' | 'weather' }