Verisk · Capability

Verisk Insurance Analytics API — Risk Scoring

Verisk Insurance Analytics API — Risk Scoring. 2 operations. Lead operation: Verisk Get ISO Fire Protection Class (PPC). Self-contained Naftiko capability covering one Verisk business surface.

Run with Naftiko VeriskRisk Scoring

What You Can Do

GET
Getfireprotectionclass — Verisk Get ISO Fire Protection Class (PPC)
/v1/risk/fire-protection-class
POST
Getriskscores — Verisk Get Insurance Risk Scores
/v1/risk/scores

MCP Tools

verisk-get-iso-fire-protection

Verisk Get ISO Fire Protection Class (PPC)

read-only idempotent
verisk-get-insurance-risk-scores

Verisk Get Insurance Risk Scores

read-only

Capability Spec

insurance-analytics-risk-scoring.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Verisk Insurance Analytics API — Risk Scoring
  description: 'Verisk Insurance Analytics API — Risk Scoring. 2 operations. Lead operation: Verisk Get ISO Fire Protection
    Class (PPC). Self-contained Naftiko capability covering one Verisk business surface.'
  tags:
  - Verisk
  - Risk Scoring
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VERISK_API_KEY: VERISK_API_KEY
capability:
  consumes:
  - type: http
    namespace: insurance-analytics-risk-scoring
    baseUri: https://api.verisk.com/insurance/v1
    description: Verisk Insurance Analytics API — Risk Scoring business capability. Self-contained, no shared references.
    resources:
    - name: risk-fire-protection-class
      path: /risk/fire-protection-class
      operations:
      - name: getfireprotectionclass
        method: GET
        description: Verisk Get ISO Fire Protection Class (PPC)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: latitude
          in: query
          type: number
          required: true
        - name: longitude
          in: query
          type: number
          required: true
        - name: constructionType
          in: query
          type: string
          description: ISO construction class
    - name: risk-scores
      path: /risk/scores
      operations:
      - name: getriskscores
        method: POST
        description: Verisk Get Insurance Risk Scores
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.VERISK_API_KEY}}'
  exposes:
  - type: rest
    namespace: insurance-analytics-risk-scoring-rest
    port: 8080
    description: REST adapter for Verisk Insurance Analytics API — Risk Scoring. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/risk/fire-protection-class
      name: risk-fire-protection-class
      description: REST surface for risk-fire-protection-class.
      operations:
      - method: GET
        name: getfireprotectionclass
        description: Verisk Get ISO Fire Protection Class (PPC)
        call: insurance-analytics-risk-scoring.getfireprotectionclass
        with:
          latitude: rest.latitude
          longitude: rest.longitude
          constructionType: rest.constructionType
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/risk/scores
      name: risk-scores
      description: REST surface for risk-scores.
      operations:
      - method: POST
        name: getriskscores
        description: Verisk Get Insurance Risk Scores
        call: insurance-analytics-risk-scoring.getriskscores
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: insurance-analytics-risk-scoring-mcp
    port: 9090
    transport: http
    description: MCP adapter for Verisk Insurance Analytics API — Risk Scoring. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: verisk-get-iso-fire-protection
      description: Verisk Get ISO Fire Protection Class (PPC)
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: insurance-analytics-risk-scoring.getfireprotectionclass
      with:
        latitude: tools.latitude
        longitude: tools.longitude
        constructionType: tools.constructionType
      outputParameters:
      - type: object
        mapping: $.
    - name: verisk-get-insurance-risk-scores
      description: Verisk Get Insurance Risk Scores
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: insurance-analytics-risk-scoring.getriskscores
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.