Revolutio · Capability

Revolutio Hazard API — Seismic

Revolutio Hazard API — Seismic. 2 operations. Lead operation: Get Seismic Hazard Analysis. Self-contained Naftiko capability covering one Revolutio business surface.

Run with Naftiko RevolutioSeismic

What You Can Do

GET
Getseismichazardget — Get Seismic Hazard Analysis
/v1/asnzs1170/seismic
POST
Getseismichazardpost — Post Seismic Hazard Analysis
/v1/asnzs1170/seismic

MCP Tools

get-seismic-hazard-analysis

Get Seismic Hazard Analysis

read-only idempotent
post-seismic-hazard-analysis

Post Seismic Hazard Analysis

Capability Spec

hazard-seismic.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Revolutio Hazard API — Seismic
  description: 'Revolutio Hazard API — Seismic. 2 operations. Lead operation: Get Seismic Hazard Analysis. Self-contained
    Naftiko capability covering one Revolutio business surface.'
  tags:
  - Revolutio
  - Seismic
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    REVOLUTIO_API_KEY: REVOLUTIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: hazard-seismic
    baseUri: https://api.revolutio.com.au
    description: Revolutio Hazard API — Seismic business capability. Self-contained, no shared references.
    resources:
    - name: asnzs1170-seismic
      path: /asnzs1170/seismic
      operations:
      - name: getseismichazardget
        method: GET
        description: Get Seismic Hazard Analysis
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: apiKey
          in: query
          type: string
          required: true
        - name: latitude
          in: query
          type: number
          required: true
        - name: longitude
          in: query
          type: number
          required: true
        - name: units
          in: query
          type: string
      - name: getseismichazardpost
        method: POST
        description: Post Seismic Hazard Analysis
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: apiKey
      value: '{{env.REVOLUTIO_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: hazard-seismic-rest
    port: 8080
    description: REST adapter for Revolutio Hazard API — Seismic. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/asnzs1170/seismic
      name: asnzs1170-seismic
      description: REST surface for asnzs1170-seismic.
      operations:
      - method: GET
        name: getseismichazardget
        description: Get Seismic Hazard Analysis
        call: hazard-seismic.getseismichazardget
        with:
          apiKey: rest.apiKey
          latitude: rest.latitude
          longitude: rest.longitude
          units: rest.units
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: getseismichazardpost
        description: Post Seismic Hazard Analysis
        call: hazard-seismic.getseismichazardpost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: hazard-seismic-mcp
    port: 9090
    transport: http
    description: MCP adapter for Revolutio Hazard API — Seismic. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-seismic-hazard-analysis
      description: Get Seismic Hazard Analysis
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hazard-seismic.getseismichazardget
      with:
        apiKey: tools.apiKey
        latitude: tools.latitude
        longitude: tools.longitude
        units: tools.units
      outputParameters:
      - type: object
        mapping: $.
    - name: post-seismic-hazard-analysis
      description: Post Seismic Hazard Analysis
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: hazard-seismic.getseismichazardpost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.