Apifuse · Capability

Apifuse API — Integrations

Apifuse API — Integrations. 2 operations. Lead operation: Apifuse List Integrations. Self-contained Naftiko capability covering one Apifuse business surface.

Run with Naftiko ApifuseIntegrations

What You Can Do

GET
Listintegrations — Apifuse List Integrations
/v1/integrations
GET
Getintegration — Apifuse Get Integration
/v1/integrations/{integrationid}

MCP Tools

apifuse-list-integrations

Apifuse List Integrations

read-only idempotent
apifuse-get-integration

Apifuse Get Integration

read-only idempotent

Capability Spec

apifuse-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apifuse API — Integrations
  description: 'Apifuse API — Integrations. 2 operations. Lead operation: Apifuse List Integrations. Self-contained Naftiko
    capability covering one Apifuse business surface.'
  tags:
  - Apifuse
  - Integrations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIFUSE_API_KEY: APIFUSE_API_KEY
capability:
  consumes:
  - type: http
    namespace: apifuse-integrations
    baseUri: https://api.apifuse.io
    description: Apifuse API — Integrations business capability. Self-contained, no shared references.
    resources:
    - name: integrations
      path: /integrations
      operations:
      - name: listintegrations
        method: GET
        description: Apifuse List Integrations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: category
          in: query
          type: string
          description: Filter integrations by category (e.g., CRM, Accounting).
        - name: page
          in: query
          type: integer
          description: Page number for pagination.
        - name: limit
          in: query
          type: integer
          description: Number of results per page.
    - name: integrations-integrationId
      path: /integrations/{integrationId}
      operations:
      - name: getintegration
        method: GET
        description: Apifuse Get Integration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: integrationId
          in: path
          type: string
          description: Unique identifier of the integration.
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.APIFUSE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: apifuse-integrations-rest
    port: 8080
    description: REST adapter for Apifuse API — Integrations. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/integrations
      name: integrations
      description: REST surface for integrations.
      operations:
      - method: GET
        name: listintegrations
        description: Apifuse List Integrations
        call: apifuse-integrations.listintegrations
        with:
          category: rest.category
          page: rest.page
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/integrations/{integrationid}
      name: integrations-integrationid
      description: REST surface for integrations-integrationId.
      operations:
      - method: GET
        name: getintegration
        description: Apifuse Get Integration
        call: apifuse-integrations.getintegration
        with:
          integrationId: rest.integrationId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: apifuse-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apifuse API — Integrations. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: apifuse-list-integrations
      description: Apifuse List Integrations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apifuse-integrations.listintegrations
      with:
        category: tools.category
        page: tools.page
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: apifuse-get-integration
      description: Apifuse Get Integration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apifuse-integrations.getintegration
      with:
        integrationId: tools.integrationId
      outputParameters:
      - type: object
        mapping: $.