State Farm Insurance Companies Renters API — Quotes

State Farm Insurance Companies Renters API — Quotes. 2 operations. Lead operation: Create Renters Insurance Quote. Self-contained Naftiko capability covering one State Farm Insurance Cos business surface.

Run with Naftiko State Farm Insurance CosQuotes

What You Can Do

POST
Createrentersquote — Create Renters Insurance Quote
/v1/renters/quotes
GET
Getrentersquote — Get Renters Insurance Quote
/v1/renters/quotes/{quoteid}

MCP Tools

create-renters-insurance-quote

Create Renters Insurance Quote

get-renters-insurance-quote

Get Renters Insurance Quote

read-only idempotent

Capability Spec

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