Salesloft · Capability

Salesloft — Calendar Events

Salesloft — Calendar Events. 2 operations. Lead operation: Salesloft List Calendar Events. Self-contained Naftiko capability covering one Salesloft business surface.

Run with Naftiko SalesloftCalendar Events

What You Can Do

GET
Get — Salesloft List Calendar Events
/v1/calendar/events
POST
Post — Salesloft Upsert a Calendar Event
/v1/calendar/events/upsert

MCP Tools

salesloft-list-calendar-events

Salesloft List Calendar Events

read-only idempotent
salesloft-upsert-calendar-event

Salesloft Upsert a Calendar Event

Capability Spec

salesloft-calendar-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesloft — Calendar Events
  description: 'Salesloft — Calendar Events. 2 operations. Lead operation: Salesloft List Calendar Events. Self-contained
    Naftiko capability covering one Salesloft business surface.'
  tags:
  - Salesloft
  - Calendar Events
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESLOFT_API_KEY: SALESLOFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesloft-calendar-events
    baseUri: http://{{salesloft_api_base_url}}
    description: Salesloft — Calendar Events business capability. Self-contained, no shared references.
    resources:
    - name: calendar-events
      path: /calendar/events
      operations:
      - name: get
        method: GET
        description: Salesloft List Calendar Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sort_by
          in: query
          type: string
        - name: sort_direction
          in: query
          type: string
        - name: per_page
          in: query
          type: string
        - name: page
          in: query
          type: string
        - name: include_paging_counts
          in: query
          type: string
        - name: start_time
          in: query
          type: string
        - name: end_time
          in: query
          type: string
        - name: user_guid
          in: query
          type: string
    - name: calendar-events-upsert
      path: /calendar/events/upsert
      operations:
      - name: post
        method: POST
        description: Salesloft Upsert a Calendar Event
        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.SALESLOFT_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesloft-calendar-events-rest
    port: 8080
    description: REST adapter for Salesloft — Calendar Events. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/calendar/events
      name: calendar-events
      description: REST surface for calendar-events.
      operations:
      - method: GET
        name: get
        description: Salesloft List Calendar Events
        call: salesloft-calendar-events.get
        with:
          sort_by: rest.sort_by
          sort_direction: rest.sort_direction
          per_page: rest.per_page
          page: rest.page
          include_paging_counts: rest.include_paging_counts
          start_time: rest.start_time
          end_time: rest.end_time
          user_guid: rest.user_guid
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/calendar/events/upsert
      name: calendar-events-upsert
      description: REST surface for calendar-events-upsert.
      operations:
      - method: POST
        name: post
        description: Salesloft Upsert a Calendar Event
        call: salesloft-calendar-events.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesloft-calendar-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesloft — Calendar Events. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: salesloft-list-calendar-events
      description: Salesloft List Calendar Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesloft-calendar-events.get
      with:
        sort_by: tools.sort_by
        sort_direction: tools.sort_direction
        per_page: tools.per_page
        page: tools.page
        include_paging_counts: tools.include_paging_counts
        start_time: tools.start_time
        end_time: tools.end_time
        user_guid: tools.user_guid
      outputParameters:
      - type: object
        mapping: $.
    - name: salesloft-upsert-calendar-event
      description: Salesloft Upsert a Calendar Event
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: salesloft-calendar-events.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.