VA Benefits Claims API — Claims

VA Benefits Claims API — Claims. 2 operations. Lead operation: List a Veteran's claims. Self-contained Naftiko capability covering one Department Of Veterans Affairs business surface.

Run with Naftiko Department Of Veterans AffairsClaims

What You Can Do

GET
Listclaims — List a Veteran's claims
/v1/veterans/{veteranid}/claims
GET
Getclaim — Retrieve a single claim
/v1/veterans/{veteranid}/claims/{id}

MCP Tools

list-veteran-s-claims

List a Veteran's claims

read-only idempotent
retrieve-single-claim

Retrieve a single claim

read-only idempotent

Capability Spec

va-benefits-claims-claims.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: VA Benefits Claims API — Claims
  description: 'VA Benefits Claims API — Claims. 2 operations. Lead operation: List a Veteran''s claims. Self-contained Naftiko
    capability covering one Department Of Veterans Affairs business surface.'
  tags:
  - Department Of Veterans Affairs
  - Claims
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    DEPARTMENT_OF_VETERANS_AFFAIRS_API_KEY: DEPARTMENT_OF_VETERANS_AFFAIRS_API_KEY
capability:
  consumes:
  - type: http
    namespace: va-benefits-claims-claims
    baseUri: https://sandbox-api.va.gov/services/claims/v2
    description: VA Benefits Claims API — Claims business capability. Self-contained, no shared references.
    resources:
    - name: veterans-veteranId-claims
      path: /veterans/{veteranId}/claims
      operations:
      - name: listclaims
        method: GET
        description: List a Veteran's claims
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: veteranId
          in: path
          type: string
          required: true
    - name: veterans-veteranId-claims-id
      path: /veterans/{veteranId}/claims/{id}
      operations:
      - name: getclaim
        method: GET
        description: Retrieve a single claim
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: veteranId
          in: path
          type: string
          required: true
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.DEPARTMENT_OF_VETERANS_AFFAIRS_API_KEY}}'
  exposes:
  - type: rest
    namespace: va-benefits-claims-claims-rest
    port: 8080
    description: REST adapter for VA Benefits Claims API — Claims. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/veterans/{veteranid}/claims
      name: veterans-veteranid-claims
      description: REST surface for veterans-veteranId-claims.
      operations:
      - method: GET
        name: listclaims
        description: List a Veteran's claims
        call: va-benefits-claims-claims.listclaims
        with:
          veteranId: rest.veteranId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/veterans/{veteranid}/claims/{id}
      name: veterans-veteranid-claims-id
      description: REST surface for veterans-veteranId-claims-id.
      operations:
      - method: GET
        name: getclaim
        description: Retrieve a single claim
        call: va-benefits-claims-claims.getclaim
        with:
          veteranId: rest.veteranId
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: va-benefits-claims-claims-mcp
    port: 9090
    transport: http
    description: MCP adapter for VA Benefits Claims API — Claims. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-veteran-s-claims
      description: List a Veteran's claims
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: va-benefits-claims-claims.listclaims
      with:
        veteranId: tools.veteranId
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-single-claim
      description: Retrieve a single claim
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: va-benefits-claims-claims.getclaim
      with:
        veteranId: tools.veteranId
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.