Liberty Mutual Insurance · Capability

Liberty Mutual Renters Insurance API — Quotes

Liberty Mutual Renters Insurance API — Quotes. 2 operations. Lead operation: Create Quote. Self-contained Naftiko capability covering one Liberty Mutual Insurance business surface.

Run with Naftiko Liberty Mutual InsuranceQuotes

What You Can Do

POST
Createquote — Create Quote
/v1/quotes
GET
Getquote — Get Quote
/v1/quotes/{quoteid}

MCP Tools

create-quote

Create Quote

get-quote

Get Quote

read-only idempotent

Capability Spec

renters-insurance-quotes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Liberty Mutual Renters Insurance API — Quotes
  description: 'Liberty Mutual Renters Insurance API — Quotes. 2 operations. Lead operation: Create Quote. Self-contained
    Naftiko capability covering one Liberty Mutual Insurance business surface.'
  tags:
  - Liberty Mutual Insurance
  - Quotes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LIBERTY_MUTUAL_INSURANCE_API_KEY: LIBERTY_MUTUAL_INSURANCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: renters-insurance-quotes
    baseUri: https://api.libertymutual.com
    description: Liberty Mutual Renters Insurance API — Quotes business capability. Self-contained, no shared references.
    resources:
    - name: quotes
      path: /quotes
      operations:
      - name: createquote
        method: POST
        description: Create Quote
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: quotes-quoteId
      path: /quotes/{quoteId}
      operations:
      - name: getquote
        method: GET
        description: Get Quote
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: quoteId
          in: path
          type: string
          required: true
  exposes:
  - type: rest
    namespace: renters-insurance-quotes-rest
    port: 8080
    description: REST adapter for Liberty Mutual Renters Insurance API — Quotes. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/quotes
      name: quotes
      description: REST surface for quotes.
      operations:
      - method: POST
        name: createquote
        description: Create Quote
        call: renters-insurance-quotes.createquote
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/quotes/{quoteid}
      name: quotes-quoteid
      description: REST surface for quotes-quoteId.
      operations:
      - method: GET
        name: getquote
        description: Get Quote
        call: renters-insurance-quotes.getquote
        with:
          quoteId: rest.quoteId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: renters-insurance-quotes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Liberty Mutual Renters Insurance API — Quotes. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: create-quote
      description: Create Quote
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: renters-insurance-quotes.createquote
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-quote
      description: Get Quote
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: renters-insurance-quotes.getquote
      with:
        quoteId: tools.quoteId
      outputParameters:
      - type: object
        mapping: $.