ACORD · Capability

ACORD Next-Generation Digital Standards (NGDS) API — Party

ACORD Next-Generation Digital Standards (NGDS) API — Party. 2 operations. Lead operation: ACORD List Parties. Self-contained Naftiko capability covering one Acord business surface.

Run with Naftiko AcordParty

What You Can Do

GET
Listparties — ACORD List Parties
/v1/parties
POST
Createparty — ACORD Create a Party
/v1/parties

MCP Tools

acord-list-parties

ACORD List Parties

read-only idempotent
acord-create-party

ACORD Create a Party

Capability Spec

ngds-party.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ACORD Next-Generation Digital Standards (NGDS) API — Party
  description: 'ACORD Next-Generation Digital Standards (NGDS) API — Party. 2 operations. Lead operation: ACORD List Parties.
    Self-contained Naftiko capability covering one Acord business surface.'
  tags:
  - Acord
  - Party
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ACORD_API_KEY: ACORD_API_KEY
capability:
  consumes:
  - type: http
    namespace: ngds-party
    baseUri: https://api.insurer-internal.example.com/ngds
    description: ACORD Next-Generation Digital Standards (NGDS) API — Party business capability. Self-contained, no shared
      references.
    resources:
    - name: parties
      path: /parties
      operations:
      - name: listparties
        method: GET
        description: ACORD List Parties
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: partyType
          in: query
          type: string
        - name: name
          in: query
          type: string
      - name: createparty
        method: POST
        description: ACORD Create a Party
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ACORD_API_KEY}}'
  exposes:
  - type: rest
    namespace: ngds-party-rest
    port: 8080
    description: REST adapter for ACORD Next-Generation Digital Standards (NGDS) API — Party. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/parties
      name: parties
      description: REST surface for parties.
      operations:
      - method: GET
        name: listparties
        description: ACORD List Parties
        call: ngds-party.listparties
        with:
          partyType: rest.partyType
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createparty
        description: ACORD Create a Party
        call: ngds-party.createparty
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ngds-party-mcp
    port: 9090
    transport: http
    description: MCP adapter for ACORD Next-Generation Digital Standards (NGDS) API — Party. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: acord-list-parties
      description: ACORD List Parties
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ngds-party.listparties
      with:
        partyType: tools.partyType
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.
    - name: acord-create-party
      description: ACORD Create a Party
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: ngds-party.createparty
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.