Basecamp · Capability

Basecamp API — Schedules

Basecamp API — Schedules. 2 operations. Lead operation: Get a schedule. Self-contained Naftiko capability covering one Basecamp business surface.

Run with Naftiko BasecampSchedules

What You Can Do

GET
Getschedule — Get a schedule
/v1/schedules/scheduleid-json
PUT
Updateschedule — Update a schedule
/v1/schedules/scheduleid-json

MCP Tools

get-schedule

Get a schedule

read-only idempotent
update-schedule

Update a schedule

idempotent

Capability Spec

basecamp-schedules.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Basecamp API — Schedules
  description: 'Basecamp API — Schedules. 2 operations. Lead operation: Get a schedule. Self-contained Naftiko capability
    covering one Basecamp business surface.'
  tags:
  - Basecamp
  - Schedules
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BASECAMP_API_KEY: BASECAMP_API_KEY
capability:
  consumes:
  - type: http
    namespace: basecamp-schedules
    baseUri: https://3.basecampapi.com/{accountId}
    description: Basecamp API — Schedules business capability. Self-contained, no shared references.
    resources:
    - name: schedules-scheduleId}.json
      path: /schedules/{scheduleId}.json
      operations:
      - name: getschedule
        method: GET
        description: Get a schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateschedule
        method: PUT
        description: Update a schedule
        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-schedules-rest
    port: 8080
    description: REST adapter for Basecamp API — Schedules. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/schedules/scheduleid-json
      name: schedules-scheduleid-json
      description: REST surface for schedules-scheduleId}.json.
      operations:
      - method: GET
        name: getschedule
        description: Get a schedule
        call: basecamp-schedules.getschedule
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateschedule
        description: Update a schedule
        call: basecamp-schedules.updateschedule
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: basecamp-schedules-mcp
    port: 9090
    transport: http
    description: MCP adapter for Basecamp API — Schedules. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-schedule
      description: Get a schedule
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: basecamp-schedules.getschedule
      outputParameters:
      - type: object
        mapping: $.
    - name: update-schedule
      description: Update a schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: basecamp-schedules.updateschedule
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.