Tinybird · Capability

Tinybird API — Sink Pipes

Tinybird API — Sink Pipes. 2 operations. Lead operation: List Sink Pipes. Self-contained Naftiko capability covering one Tinybird business surface.

Run with Naftiko TinybirdSink Pipes

What You Can Do

GET
Listsinkpipes — List Sink Pipes
/v1/v0/sink-pipes
POST
Createsinkpipe — Create Sink Pipe
/v1/v0/sink-pipes

MCP Tools

list-sink-pipes

List Sink Pipes

read-only idempotent
create-sink-pipe

Create Sink Pipe

Capability Spec

tinybird-sink-pipes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tinybird API — Sink Pipes
  description: 'Tinybird API — Sink Pipes. 2 operations. Lead operation: List Sink Pipes. Self-contained Naftiko capability
    covering one Tinybird business surface.'
  tags:
  - Tinybird
  - Sink Pipes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TINYBIRD_API_KEY: TINYBIRD_API_KEY
capability:
  consumes:
  - type: http
    namespace: tinybird-sink-pipes
    baseUri: https://api.tinybird.co
    description: Tinybird API — Sink Pipes business capability. Self-contained, no shared references.
    resources:
    - name: v0-sink_pipes
      path: /v0/sink_pipes
      operations:
      - name: listsinkpipes
        method: GET
        description: List Sink Pipes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createsinkpipe
        method: POST
        description: Create Sink Pipe
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.TINYBIRD_API_KEY}}'
  exposes:
  - type: rest
    namespace: tinybird-sink-pipes-rest
    port: 8080
    description: REST adapter for Tinybird API — Sink Pipes. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v0/sink-pipes
      name: v0-sink-pipes
      description: REST surface for v0-sink_pipes.
      operations:
      - method: GET
        name: listsinkpipes
        description: List Sink Pipes
        call: tinybird-sink-pipes.listsinkpipes
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsinkpipe
        description: Create Sink Pipe
        call: tinybird-sink-pipes.createsinkpipe
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tinybird-sink-pipes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tinybird API — Sink Pipes. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-sink-pipes
      description: List Sink Pipes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tinybird-sink-pipes.listsinkpipes
      outputParameters:
      - type: object
        mapping: $.
    - name: create-sink-pipe
      description: Create Sink Pipe
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tinybird-sink-pipes.createsinkpipe
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.