Basecamp · Capability

Basecamp API — Card Tables

Basecamp API — Card Tables. 2 operations. Lead operation: Get a card table. Self-contained Naftiko capability covering one Basecamp business surface.

Run with Naftiko BasecampCard Tables

What You Can Do

GET
Getcardtable — Get a card table
/v1/card-tables/cardtableid-json
POST
Movecard — Move a card
/v1/card-tables/{cardtableid}/moves-json

MCP Tools

get-card-table

Get a card table

read-only idempotent
move-card

Move a card

Capability Spec

basecamp-card-tables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Basecamp API — Card Tables
  description: 'Basecamp API — Card Tables. 2 operations. Lead operation: Get a card table. Self-contained Naftiko capability
    covering one Basecamp business surface.'
  tags:
  - Basecamp
  - Card Tables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BASECAMP_API_KEY: BASECAMP_API_KEY
capability:
  consumes:
  - type: http
    namespace: basecamp-card-tables
    baseUri: https://3.basecampapi.com/{accountId}
    description: Basecamp API — Card Tables business capability. Self-contained, no shared references.
    resources:
    - name: card_tables-cardTableId}.json
      path: /card_tables/{cardTableId}.json
      operations:
      - name: getcardtable
        method: GET
        description: Get a card table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: card_tables-cardTableId-moves.json
      path: /card_tables/{cardTableId}/moves.json
      operations:
      - name: movecard
        method: POST
        description: Move a card
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.BASECAMP_API_KEY}}'
  exposes:
  - type: rest
    namespace: basecamp-card-tables-rest
    port: 8080
    description: REST adapter for Basecamp API — Card Tables. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/card-tables/cardtableid-json
      name: card-tables-cardtableid-json
      description: REST surface for card_tables-cardTableId}.json.
      operations:
      - method: GET
        name: getcardtable
        description: Get a card table
        call: basecamp-card-tables.getcardtable
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/card-tables/{cardtableid}/moves-json
      name: card-tables-cardtableid-moves-json
      description: REST surface for card_tables-cardTableId-moves.json.
      operations:
      - method: POST
        name: movecard
        description: Move a card
        call: basecamp-card-tables.movecard
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: basecamp-card-tables-mcp
    port: 9090
    transport: http
    description: MCP adapter for Basecamp API — Card Tables. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-card-table
      description: Get a card table
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: basecamp-card-tables.getcardtable
      outputParameters:
      - type: object
        mapping: $.
    - name: move-card
      description: Move a card
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: basecamp-card-tables.movecard
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.