Stripe · Capability

Stripe Payment Method API — Payment Method Configurations

Stripe Payment Method API — Payment Method Configurations. 4 operations. Lead operation: Payment Method Configurations. Self-contained Naftiko capability covering one Stripe business surface.

Run with Naftiko StripePayment Method Configurations

What You Can Do

GET
Getpaymentmethodconfigurations

List payment method configurations

/v1/v1/payment-method-configurations
POST
Postpaymentmethodconfigurations

Creates a payment method configuration

/v1/v1/payment-method-configurations
GET
Getpaymentmethodconfigurationsconfiguration

Retrieve payment method configuration

/v1/v1/payment-method-configurations/{configuration}
POST
Postpaymentmethodconfigurationsconfiguration

Update payment method configuration

/v1/v1/payment-method-configurations/{configuration}

MCP Tools

p-list-payment-method-configurations-p

List payment method configurations

read-only idempotent
p-creates-payment-method-configuration-p

Creates a payment method configuration

p-retrieve-payment-method-configuration-p

Retrieve payment method configuration

read-only idempotent
p-update-payment-method-configuration-p

Update payment method configuration

Capability Spec

payment-method-payment-method-configurations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Stripe Payment Method API — Payment Method Configurations
  description: 'Stripe Payment Method API — Payment Method Configurations. 4 operations. Lead operation: Payment Method Configurations.
    Self-contained Naftiko capability covering one Stripe business surface.'
  tags:
  - Stripe
  - Payment Method Configurations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    STRIPE_API_KEY: STRIPE_API_KEY
capability:
  consumes:
  - type: http
    namespace: payment-method-payment-method-configurations
    baseUri: https://api.stripe.com
    description: Stripe Payment Method API — Payment Method Configurations business capability. Self-contained, no shared
      references.
    resources:
    - name: v1-payment_method_configurations
      path: /v1/payment_method_configurations
      operations:
      - name: getpaymentmethodconfigurations
        method: GET
        description: <p>List payment method configurations</p>
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: application
          in: query
          type: string
          description: The Connect application to filter by.
        - name: expand
          in: query
          type: array
          description: Specifies which fields in the response should be expanded.
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: postpaymentmethodconfigurations
        method: POST
        description: <p>Creates a payment method configuration</p>
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-payment_method_configurations-configuration
      path: /v1/payment_method_configurations/{configuration}
      operations:
      - name: getpaymentmethodconfigurationsconfiguration
        method: GET
        description: <p>Retrieve payment method configuration</p>
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: configuration
          in: path
          type: string
          required: true
        - name: expand
          in: query
          type: array
          description: Specifies which fields in the response should be expanded.
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: postpaymentmethodconfigurationsconfiguration
        method: POST
        description: <p>Update payment method configuration</p>
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: configuration
          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: payment-method-payment-method-configurations-rest
    port: 8080
    description: REST adapter for Stripe Payment Method API — Payment Method Configurations. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v1/payment-method-configurations
      name: v1-payment-method-configurations
      description: REST surface for v1-payment_method_configurations.
      operations:
      - method: GET
        name: getpaymentmethodconfigurations
        description: <p>List payment method configurations</p>
        call: payment-method-payment-method-configurations.getpaymentmethodconfigurations
        with:
          application: rest.application
          expand: rest.expand
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postpaymentmethodconfigurations
        description: <p>Creates a payment method configuration</p>
        call: payment-method-payment-method-configurations.postpaymentmethodconfigurations
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/payment-method-configurations/{configuration}
      name: v1-payment-method-configurations-configuration
      description: REST surface for v1-payment_method_configurations-configuration.
      operations:
      - method: GET
        name: getpaymentmethodconfigurationsconfiguration
        description: <p>Retrieve payment method configuration</p>
        call: payment-method-payment-method-configurations.getpaymentmethodconfigurationsconfiguration
        with:
          configuration: rest.configuration
          expand: rest.expand
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postpaymentmethodconfigurationsconfiguration
        description: <p>Update payment method configuration</p>
        call: payment-method-payment-method-configurations.postpaymentmethodconfigurationsconfiguration
        with:
          configuration: rest.configuration
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: payment-method-payment-method-configurations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Stripe Payment Method API — Payment Method Configurations. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: p-list-payment-method-configurations-p
      description: <p>List payment method configurations</p>
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payment-method-payment-method-configurations.getpaymentmethodconfigurations
      with:
        application: tools.application
        expand: tools.expand
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: p-creates-payment-method-configuration-p
      description: <p>Creates a payment method configuration</p>
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: payment-method-payment-method-configurations.postpaymentmethodconfigurations
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: p-retrieve-payment-method-configuration-p
      description: <p>Retrieve payment method configuration</p>
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: payment-method-payment-method-configurations.getpaymentmethodconfigurationsconfiguration
      with:
        configuration: tools.configuration
        expand: tools.expand
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: p-update-payment-method-configuration-p
      description: <p>Update payment method configuration</p>
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: payment-method-payment-method-configurations.postpaymentmethodconfigurationsconfiguration
      with:
        configuration: tools.configuration
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.