IXON · Capability

IXON API — CompanyList

IXON API — CompanyList. 3 operations. Lead operation: CompanyList. Self-contained Naftiko capability covering one Ixon business surface.

Run with Naftiko IxonCompanyList

What You Can Do

GET
Get — CompanyList
/v1/companies
POST
Post — CompanyList
/v1/companies
DELETE
Delete — CompanyList
/v1/companies

MCP Tools

companylist

CompanyList

read-only idempotent
companylist-2

CompanyList

companylist-3

CompanyList

idempotent

Capability Spec

ixon-companylist.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: IXON API — CompanyList
  description: 'IXON API — CompanyList. 3 operations. Lead operation: CompanyList. Self-contained Naftiko capability covering
    one Ixon business surface.'
  tags:
  - Ixon
  - CompanyList
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    IXON_API_KEY: IXON_API_KEY
capability:
  consumes:
  - type: http
    namespace: ixon-companylist
    baseUri: https://portal.ixon.cloud:443/api
    description: IXON API — CompanyList business capability. Self-contained, no shared references.
    resources:
    - name: companies
      path: /companies
      operations:
      - name: get
        method: GET
        description: CompanyList
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: CompanyList
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: delete
        method: DELETE
        description: CompanyList
        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.IXON_API_KEY}}'
  exposes:
  - type: rest
    namespace: ixon-companylist-rest
    port: 8080
    description: REST adapter for IXON API — CompanyList. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/companies
      name: companies
      description: REST surface for companies.
      operations:
      - method: GET
        name: get
        description: CompanyList
        call: ixon-companylist.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: CompanyList
        call: ixon-companylist.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: CompanyList
        call: ixon-companylist.delete
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ixon-companylist-mcp
    port: 9090
    transport: http
    description: MCP adapter for IXON API — CompanyList. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: companylist
      description: CompanyList
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ixon-companylist.get
      outputParameters:
      - type: object
        mapping: $.
    - name: companylist-2
      description: CompanyList
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: ixon-companylist.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: companylist-3
      description: CompanyList
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: ixon-companylist.delete
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.