Basecamp · Capability

Basecamp API — Schedule Entries

Basecamp API — Schedule Entries. 4 operations. Lead operation: Get a schedule entry. Self-contained Naftiko capability covering one Basecamp business surface.

Run with Naftiko BasecampSchedule Entries

What You Can Do

GET
Getscheduleentry — Get a schedule entry
/v1/schedule-entries/entryid-json
PUT
Updatescheduleentry — Update a schedule entry
/v1/schedule-entries/entryid-json
GET
Listscheduleentries — List schedule entries
/v1/schedules/{scheduleid}/entries-json
POST
Createscheduleentry — Create a schedule entry
/v1/schedules/{scheduleid}/entries-json

MCP Tools

get-schedule-entry

Get a schedule entry

read-only idempotent
update-schedule-entry

Update a schedule entry

idempotent
list-schedule-entries

List schedule entries

read-only idempotent
create-schedule-entry

Create a schedule entry

Capability Spec

basecamp-schedule-entries.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Basecamp API — Schedule Entries
  description: 'Basecamp API — Schedule Entries. 4 operations. Lead operation: Get a schedule entry. Self-contained Naftiko
    capability covering one Basecamp business surface.'
  tags:
  - Basecamp
  - Schedule Entries
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BASECAMP_API_KEY: BASECAMP_API_KEY
capability:
  consumes:
  - type: http
    namespace: basecamp-schedule-entries
    baseUri: https://3.basecampapi.com/{accountId}
    description: Basecamp API — Schedule Entries business capability. Self-contained, no shared references.
    resources:
    - name: schedule_entries-entryId}.json
      path: /schedule_entries/{entryId}.json
      operations:
      - name: getscheduleentry
        method: GET
        description: Get a schedule entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatescheduleentry
        method: PUT
        description: Update a schedule entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: schedules-scheduleId-entries.json
      path: /schedules/{scheduleId}/entries.json
      operations:
      - name: listscheduleentries
        method: GET
        description: List schedule entries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by status.
      - name: createscheduleentry
        method: POST
        description: Create a schedule entry
        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-schedule-entries-rest
    port: 8080
    description: REST adapter for Basecamp API — Schedule Entries. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/schedule-entries/entryid-json
      name: schedule-entries-entryid-json
      description: REST surface for schedule_entries-entryId}.json.
      operations:
      - method: GET
        name: getscheduleentry
        description: Get a schedule entry
        call: basecamp-schedule-entries.getscheduleentry
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatescheduleentry
        description: Update a schedule entry
        call: basecamp-schedule-entries.updatescheduleentry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/schedules/{scheduleid}/entries-json
      name: schedules-scheduleid-entries-json
      description: REST surface for schedules-scheduleId-entries.json.
      operations:
      - method: GET
        name: listscheduleentries
        description: List schedule entries
        call: basecamp-schedule-entries.listscheduleentries
        with:
          status: rest.status
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createscheduleentry
        description: Create a schedule entry
        call: basecamp-schedule-entries.createscheduleentry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: basecamp-schedule-entries-mcp
    port: 9090
    transport: http
    description: MCP adapter for Basecamp API — Schedule Entries. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-schedule-entry
      description: Get a schedule entry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: basecamp-schedule-entries.getscheduleentry
      outputParameters:
      - type: object
        mapping: $.
    - name: update-schedule-entry
      description: Update a schedule entry
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: basecamp-schedule-entries.updatescheduleentry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-schedule-entries
      description: List schedule entries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: basecamp-schedule-entries.listscheduleentries
      with:
        status: tools.status
      outputParameters:
      - type: object
        mapping: $.
    - name: create-schedule-entry
      description: Create a schedule entry
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: basecamp-schedule-entries.createscheduleentry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.