Stripe · Capability

Stripe Transfers API — Transfers

Stripe Transfers API — Transfers. 8 operations. Lead operation: Stripe List Transfers. Self-contained Naftiko capability covering one Stripe business surface.

Run with Naftiko StripeTransfers

What You Can Do

GET
Gettransfers — Stripe List Transfers
/v1/v1/transfers
POST
Posttransfers — Stripe Create Transfer
/v1/v1/transfers
GET
Gettransfersidreversals — Stripe List Transfer Reversals
/v1/v1/transfers/{id}/reversals
POST
Posttransfersidreversals — Stripe Create Transfer Reversal
/v1/v1/transfers/{id}/reversals
GET
Gettransferstransfer — Stripe Retrieve Transfer
/v1/v1/transfers/{transfer}
POST
Posttransferstransfer — Stripe Update Transfer
/v1/v1/transfers/{transfer}
GET
Gettransferstransferreversalsid — Stripe Retrieve Transfer Reversal
/v1/v1/transfers/{transfer}/reversals/{id}
POST
Posttransferstransferreversalsid — Stripe Update Transfer Reversal
/v1/v1/transfers/{transfer}/reversals/{id}

MCP Tools

stripe-list-transfers

Stripe List Transfers

read-only idempotent
stripe-create-transfer

Stripe Create Transfer

stripe-list-transfer-reversals

Stripe List Transfer Reversals

read-only idempotent
stripe-create-transfer-reversal

Stripe Create Transfer Reversal

stripe-retrieve-transfer

Stripe Retrieve Transfer

read-only idempotent
stripe-update-transfer

Stripe Update Transfer

stripe-retrieve-transfer-reversal

Stripe Retrieve Transfer Reversal

read-only idempotent
stripe-update-transfer-reversal

Stripe Update Transfer Reversal

Capability Spec

transfers-transfers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Stripe Transfers API — Transfers
  description: 'Stripe Transfers API — Transfers. 8 operations. Lead operation: Stripe List Transfers. Self-contained Naftiko
    capability covering one Stripe business surface.'
  tags:
  - Stripe
  - Transfers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    STRIPE_API_KEY: STRIPE_API_KEY
capability:
  consumes:
  - type: http
    namespace: transfers-transfers
    baseUri: https://api.stripe.com
    description: Stripe Transfers API — Transfers business capability. Self-contained, no shared references.
    resources:
    - name: v1-transfers
      path: /v1/transfers
      operations:
      - name: gettransfers
        method: GET
        description: Stripe List Transfers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: destination
          in: query
          type: string
          description: Only return transfers for the destination specified by this account ID.
        - name: transfer_group
          in: query
          type: string
          description: Only return transfers with the specified transfer group.
        - name: ending_before
          in: query
          type: string
        - name: limit
          in: query
          type: integer
        - name: starting_after
          in: query
          type: string
        - name: expand
          in: query
          type: array
      - name: posttransfers
        method: POST
        description: Stripe Create Transfer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-transfers-id-reversals
      path: /v1/transfers/{id}/reversals
      operations:
      - name: gettransfersidreversals
        method: GET
        description: Stripe List Transfer Reversals
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: ending_before
          in: query
          type: string
        - name: limit
          in: query
          type: integer
        - name: starting_after
          in: query
          type: string
      - name: posttransfersidreversals
        method: POST
        description: Stripe Create Transfer Reversal
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-transfers-transfer
      path: /v1/transfers/{transfer}
      operations:
      - name: gettransferstransfer
        method: GET
        description: Stripe Retrieve Transfer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: transfer
          in: path
          type: string
          required: true
        - name: expand
          in: query
          type: array
      - name: posttransferstransfer
        method: POST
        description: Stripe Update Transfer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: transfer
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-transfers-transfer-reversals-id
      path: /v1/transfers/{transfer}/reversals/{id}
      operations:
      - name: gettransferstransferreversalsid
        method: GET
        description: Stripe Retrieve Transfer Reversal
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: transfer
          in: path
          type: string
          required: true
        - name: id
          in: path
          type: string
          required: true
      - name: posttransferstransferreversalsid
        method: POST
        description: Stripe Update Transfer Reversal
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: transfer
          in: path
          type: string
          required: true
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.STRIPE_API_KEY}}'
  exposes:
  - type: rest
    namespace: transfers-transfers-rest
    port: 8080
    description: REST adapter for Stripe Transfers API — Transfers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/transfers
      name: v1-transfers
      description: REST surface for v1-transfers.
      operations:
      - method: GET
        name: gettransfers
        description: Stripe List Transfers
        call: transfers-transfers.gettransfers
        with:
          destination: rest.destination
          transfer_group: rest.transfer_group
          ending_before: rest.ending_before
          limit: rest.limit
          starting_after: rest.starting_after
          expand: rest.expand
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: posttransfers
        description: Stripe Create Transfer
        call: transfers-transfers.posttransfers
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/transfers/{id}/reversals
      name: v1-transfers-id-reversals
      description: REST surface for v1-transfers-id-reversals.
      operations:
      - method: GET
        name: gettransfersidreversals
        description: Stripe List Transfer Reversals
        call: transfers-transfers.gettransfersidreversals
        with:
          id: rest.id
          ending_before: rest.ending_before
          limit: rest.limit
          starting_after: rest.starting_after
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: posttransfersidreversals
        description: Stripe Create Transfer Reversal
        call: transfers-transfers.posttransfersidreversals
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/transfers/{transfer}
      name: v1-transfers-transfer
      description: REST surface for v1-transfers-transfer.
      operations:
      - method: GET
        name: gettransferstransfer
        description: Stripe Retrieve Transfer
        call: transfers-transfers.gettransferstransfer
        with:
          transfer: rest.transfer
          expand: rest.expand
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: posttransferstransfer
        description: Stripe Update Transfer
        call: transfers-transfers.posttransferstransfer
        with:
          transfer: rest.transfer
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/transfers/{transfer}/reversals/{id}
      name: v1-transfers-transfer-reversals-id
      description: REST surface for v1-transfers-transfer-reversals-id.
      operations:
      - method: GET
        name: gettransferstransferreversalsid
        description: Stripe Retrieve Transfer Reversal
        call: transfers-transfers.gettransferstransferreversalsid
        with:
          transfer: rest.transfer
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: posttransferstransferreversalsid
        description: Stripe Update Transfer Reversal
        call: transfers-transfers.posttransferstransferreversalsid
        with:
          transfer: rest.transfer
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: transfers-transfers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Stripe Transfers API — Transfers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: stripe-list-transfers
      description: Stripe List Transfers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transfers-transfers.gettransfers
      with:
        destination: tools.destination
        transfer_group: tools.transfer_group
        ending_before: tools.ending_before
        limit: tools.limit
        starting_after: tools.starting_after
        expand: tools.expand
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-create-transfer
      description: Stripe Create Transfer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transfers-transfers.posttransfers
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-list-transfer-reversals
      description: Stripe List Transfer Reversals
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transfers-transfers.gettransfersidreversals
      with:
        id: tools.id
        ending_before: tools.ending_before
        limit: tools.limit
        starting_after: tools.starting_after
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-create-transfer-reversal
      description: Stripe Create Transfer Reversal
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transfers-transfers.posttransfersidreversals
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-retrieve-transfer
      description: Stripe Retrieve Transfer
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transfers-transfers.gettransferstransfer
      with:
        transfer: tools.transfer
        expand: tools.expand
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-update-transfer
      description: Stripe Update Transfer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transfers-transfers.posttransferstransfer
      with:
        transfer: tools.transfer
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-retrieve-transfer-reversal
      description: Stripe Retrieve Transfer Reversal
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transfers-transfers.gettransferstransferreversalsid
      with:
        transfer: tools.transfer
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-update-transfer-reversal
      description: Stripe Update Transfer Reversal
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: transfers-transfers.posttransferstransferreversalsid
      with:
        transfer: tools.transfer
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.