Stripe · Capability

Stripe Payment Links API — Post

Stripe Payment Links API — Post. 2 operations. Lead operation: Stripe Post Payment Links. Self-contained Naftiko capability covering one Stripe business surface.

Run with Naftiko StripePost

What You Can Do

POST
Postpaymentlinks — Stripe Post Payment Links
/v1/v1/payment-links
POST
Postpaymentlinkspaymentlink — Stripe Post Payment Links
/v1/v1/payment-links/{payment-link}

MCP Tools

stripe-post-payment-links

Stripe Post Payment Links

stripe-post-payment-links-2

Stripe Post Payment Links

Capability Spec

payment-links-post.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Stripe Payment Links API — Post
  description: 'Stripe Payment Links API — Post. 2 operations. Lead operation: Stripe Post   Payment Links. Self-contained
    Naftiko capability covering one Stripe business surface.'
  tags:
  - Stripe
  - Post
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    STRIPE_API_KEY: STRIPE_API_KEY
capability:
  consumes:
  - type: http
    namespace: payment-links-post
    baseUri: https://api.stripe.com
    description: Stripe Payment Links API — Post business capability. Self-contained, no shared references.
    resources:
    - name: v1-payment_links
      path: /v1/payment_links
      operations:
      - name: postpaymentlinks
        method: POST
        description: Stripe Post   Payment Links
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-payment_links-payment_link
      path: /v1/payment_links/{payment_link}
      operations:
      - name: postpaymentlinkspaymentlink
        method: POST
        description: Stripe Post   Payment Links
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: payment_link
          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-links-post-rest
    port: 8080
    description: REST adapter for Stripe Payment Links API — Post. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/payment-links
      name: v1-payment-links
      description: REST surface for v1-payment_links.
      operations:
      - method: POST
        name: postpaymentlinks
        description: Stripe Post   Payment Links
        call: payment-links-post.postpaymentlinks
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/payment-links/{payment-link}
      name: v1-payment-links-payment-link
      description: REST surface for v1-payment_links-payment_link.
      operations:
      - method: POST
        name: postpaymentlinkspaymentlink
        description: Stripe Post   Payment Links
        call: payment-links-post.postpaymentlinkspaymentlink
        with:
          payment_link: rest.payment_link
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: payment-links-post-mcp
    port: 9090
    transport: http
    description: MCP adapter for Stripe Payment Links API — Post. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: stripe-post-payment-links
      description: Stripe Post   Payment Links
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: payment-links-post.postpaymentlinks
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: stripe-post-payment-links-2
      description: Stripe Post   Payment Links
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: payment-links-post.postpaymentlinkspaymentlink
      with:
        payment_link: tools.payment_link
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.