HubSpot · Capability

HubSpot Engagement Meetings API — Meetings

HubSpot Engagement Meetings API — Meetings. 6 operations. Lead operation: Hubspot List Meetings. Self-contained Naftiko capability covering one Hubspot business surface.

Run with Naftiko HubspotMeetings

What You Can Do

GET
Listmeetings — Hubspot List Meetings
/v1/crm/v3/objects/meetings
POST
Createmeeting — Hubspot Create a Meeting
/v1/crm/v3/objects/meetings
POST
Searchmeetings — Hubspot Search Meetings
/v1/crm/v3/objects/meetings/search
GET
Getmeeting — Hubspot Get a Meeting
/v1/crm/v3/objects/meetings/{meetingid}
PATCH
Updatemeeting — Hubspot Update a Meeting
/v1/crm/v3/objects/meetings/{meetingid}
DELETE
Deletemeeting — Hubspot Archive a Meeting
/v1/crm/v3/objects/meetings/{meetingid}

MCP Tools

hubspot-list-meetings

Hubspot List Meetings

read-only idempotent
hubspot-create-meeting

Hubspot Create a Meeting

hubspot-search-meetings

Hubspot Search Meetings

read-only
hubspot-get-meeting

Hubspot Get a Meeting

read-only idempotent
hubspot-update-meeting

Hubspot Update a Meeting

idempotent
hubspot-archive-meeting

Hubspot Archive a Meeting

idempotent

Capability Spec

engagement-meetings-meetings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: HubSpot Engagement Meetings API — Meetings
  description: 'HubSpot Engagement Meetings API — Meetings. 6 operations. Lead operation: Hubspot List Meetings. Self-contained
    Naftiko capability covering one Hubspot business surface.'
  tags:
  - Hubspot
  - Meetings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HUBSPOT_API_KEY: HUBSPOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: engagement-meetings-meetings
    baseUri: https://api.hubapi.com
    description: HubSpot Engagement Meetings API — Meetings business capability. Self-contained, no shared references.
    resources:
    - name: crm-v3-objects-meetings
      path: /crm/v3/objects/meetings
      operations:
      - name: listmeetings
        method: GET
        description: Hubspot List Meetings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
          description: The maximum number of results to return per page.
        - name: after
          in: query
          type: string
          description: The cursor for pagination to get the next page of results.
        - name: properties
          in: query
          type: string
          description: A comma-separated list of property names to return.
        - name: archived
          in: query
          type: boolean
          description: Whether to return archived meetings.
      - name: createmeeting
        method: POST
        description: Hubspot Create a Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: crm-v3-objects-meetings-search
      path: /crm/v3/objects/meetings/search
      operations:
      - name: searchmeetings
        method: POST
        description: Hubspot Search Meetings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: crm-v3-objects-meetings-meetingId
      path: /crm/v3/objects/meetings/{meetingId}
      operations:
      - name: getmeeting
        method: GET
        description: Hubspot Get a Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: path
          type: string
          description: The ID of the meeting to retrieve.
          required: true
        - name: properties
          in: query
          type: string
          description: A comma-separated list of property names to return.
        - name: archived
          in: query
          type: boolean
          description: Whether to return archived meetings.
      - name: updatemeeting
        method: PATCH
        description: Hubspot Update a Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: path
          type: string
          description: The ID of the meeting to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletemeeting
        method: DELETE
        description: Hubspot Archive a Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: path
          type: string
          description: The ID of the meeting to archive.
          required: true
    authentication:
      type: bearer
      token: '{{env.HUBSPOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: engagement-meetings-meetings-rest
    port: 8080
    description: REST adapter for HubSpot Engagement Meetings API — Meetings. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/crm/v3/objects/meetings
      name: crm-v3-objects-meetings
      description: REST surface for crm-v3-objects-meetings.
      operations:
      - method: GET
        name: listmeetings
        description: Hubspot List Meetings
        call: engagement-meetings-meetings.listmeetings
        with:
          limit: rest.limit
          after: rest.after
          properties: rest.properties
          archived: rest.archived
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createmeeting
        description: Hubspot Create a Meeting
        call: engagement-meetings-meetings.createmeeting
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/crm/v3/objects/meetings/search
      name: crm-v3-objects-meetings-search
      description: REST surface for crm-v3-objects-meetings-search.
      operations:
      - method: POST
        name: searchmeetings
        description: Hubspot Search Meetings
        call: engagement-meetings-meetings.searchmeetings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/crm/v3/objects/meetings/{meetingid}
      name: crm-v3-objects-meetings-meetingid
      description: REST surface for crm-v3-objects-meetings-meetingId.
      operations:
      - method: GET
        name: getmeeting
        description: Hubspot Get a Meeting
        call: engagement-meetings-meetings.getmeeting
        with:
          meetingId: rest.meetingId
          properties: rest.properties
          archived: rest.archived
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatemeeting
        description: Hubspot Update a Meeting
        call: engagement-meetings-meetings.updatemeeting
        with:
          meetingId: rest.meetingId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletemeeting
        description: Hubspot Archive a Meeting
        call: engagement-meetings-meetings.deletemeeting
        with:
          meetingId: rest.meetingId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: engagement-meetings-meetings-mcp
    port: 9090
    transport: http
    description: MCP adapter for HubSpot Engagement Meetings API — Meetings. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: hubspot-list-meetings
      description: Hubspot List Meetings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: engagement-meetings-meetings.listmeetings
      with:
        limit: tools.limit
        after: tools.after
        properties: tools.properties
        archived: tools.archived
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-create-meeting
      description: Hubspot Create a Meeting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: engagement-meetings-meetings.createmeeting
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-search-meetings
      description: Hubspot Search Meetings
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: engagement-meetings-meetings.searchmeetings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-get-meeting
      description: Hubspot Get a Meeting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: engagement-meetings-meetings.getmeeting
      with:
        meetingId: tools.meetingId
        properties: tools.properties
        archived: tools.archived
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-update-meeting
      description: Hubspot Update a Meeting
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: engagement-meetings-meetings.updatemeeting
      with:
        meetingId: tools.meetingId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-archive-meeting
      description: Hubspot Archive a Meeting
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: engagement-meetings-meetings.deletemeeting
      with:
        meetingId: tools.meetingId
      outputParameters:
      - type: object
        mapping: $.