Application Research · Capability

Application Research CNAB Bundle API — Claims

Application Research CNAB Bundle API — Claims. 3 operations. Lead operation: Application Research List all claims. Self-contained Naftiko capability covering one Application Research business surface.

Run with Naftiko Application ResearchClaims

What You Can Do

GET
Listclaims — Application Research List all claims
/v1/claims
POST
Createclaim — Application Research Create a new claim
/v1/claims
GET
Getclaim — Application Research Get a claim by ID
/v1/claims/{id}

MCP Tools

application-research-list-all-claims

Application Research List all claims

read-only idempotent
application-research-create-new-claim

Application Research Create a new claim

read-only
application-research-get-claim-id

Application Research Get a claim by ID

read-only idempotent

Capability Spec

cloud-native-application-bundle-claims.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Application Research CNAB Bundle API — Claims
  description: 'Application Research CNAB Bundle API — Claims. 3 operations. Lead operation: Application Research List all
    claims. Self-contained Naftiko capability covering one Application Research business surface.'
  tags:
  - Application Research
  - Claims
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPLICATION_RESEARCH_API_KEY: APPLICATION_RESEARCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloud-native-application-bundle-claims
    baseUri: https://api.example.com/v1
    description: Application Research CNAB Bundle API — Claims business capability. Self-contained, no shared references.
    resources:
    - name: claims
      path: /claims
      operations:
      - name: listclaims
        method: GET
        description: Application Research List all claims
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: installation
          in: query
          type: string
          description: Filter by installation name
        - name: action
          in: query
          type: string
          description: Filter by action type
      - name: createclaim
        method: POST
        description: Application Research Create a new claim
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: claims-id
      path: /claims/{id}
      operations:
      - name: getclaim
        method: GET
        description: Application Research Get a claim by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.APPLICATION_RESEARCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: cloud-native-application-bundle-claims-rest
    port: 8080
    description: REST adapter for Application Research CNAB Bundle API — Claims. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/claims
      name: claims
      description: REST surface for claims.
      operations:
      - method: GET
        name: listclaims
        description: Application Research List all claims
        call: cloud-native-application-bundle-claims.listclaims
        with:
          installation: rest.installation
          action: rest.action
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createclaim
        description: Application Research Create a new claim
        call: cloud-native-application-bundle-claims.createclaim
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/claims/{id}
      name: claims-id
      description: REST surface for claims-id.
      operations:
      - method: GET
        name: getclaim
        description: Application Research Get a claim by ID
        call: cloud-native-application-bundle-claims.getclaim
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloud-native-application-bundle-claims-mcp
    port: 9090
    transport: http
    description: MCP adapter for Application Research CNAB Bundle API — Claims. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: application-research-list-all-claims
      description: Application Research List all claims
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-native-application-bundle-claims.listclaims
      with:
        installation: tools.installation
        action: tools.action
      outputParameters:
      - type: object
        mapping: $.
    - name: application-research-create-new-claim
      description: Application Research Create a new claim
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: cloud-native-application-bundle-claims.createclaim
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: application-research-get-claim-id
      description: Application Research Get a claim by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-native-application-bundle-claims.getclaim
      outputParameters:
      - type: object
        mapping: $.