HubSpot · Capability

HubSpot Engagement Tasks API — Tasks

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

Run with Naftiko HubspotTasks

What You Can Do

GET
Listtasks — Hubspot List Tasks
/v1/crm/v3/objects/tasks
POST
Createtask — Hubspot Create a Task
/v1/crm/v3/objects/tasks
POST
Searchtasks — Hubspot Search Tasks
/v1/crm/v3/objects/tasks/search
GET
Gettask — Hubspot Get a Task
/v1/crm/v3/objects/tasks/{taskid}
PATCH
Updatetask — Hubspot Update a Task
/v1/crm/v3/objects/tasks/{taskid}
DELETE
Deletetask — Hubspot Archive a Task
/v1/crm/v3/objects/tasks/{taskid}

MCP Tools

hubspot-list-tasks

Hubspot List Tasks

read-only idempotent
hubspot-create-task

Hubspot Create a Task

hubspot-search-tasks

Hubspot Search Tasks

read-only
hubspot-get-task

Hubspot Get a Task

read-only idempotent
hubspot-update-task

Hubspot Update a Task

idempotent
hubspot-archive-task

Hubspot Archive a Task

idempotent

Capability Spec

engagement-tasks-tasks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: HubSpot Engagement Tasks API — Tasks
  description: 'HubSpot Engagement Tasks API — Tasks. 6 operations. Lead operation: Hubspot List Tasks. Self-contained Naftiko
    capability covering one Hubspot business surface.'
  tags:
  - Hubspot
  - Tasks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HUBSPOT_API_KEY: HUBSPOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: engagement-tasks-tasks
    baseUri: https://api.hubapi.com
    description: HubSpot Engagement Tasks API — Tasks business capability. Self-contained, no shared references.
    resources:
    - name: crm-v3-objects-tasks
      path: /crm/v3/objects/tasks
      operations:
      - name: listtasks
        method: GET
        description: Hubspot List Tasks
        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 tasks.
      - name: createtask
        method: POST
        description: Hubspot Create a Task
        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-tasks-search
      path: /crm/v3/objects/tasks/search
      operations:
      - name: searchtasks
        method: POST
        description: Hubspot Search Tasks
        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-tasks-taskId
      path: /crm/v3/objects/tasks/{taskId}
      operations:
      - name: gettask
        method: GET
        description: Hubspot Get a Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: taskId
          in: path
          type: string
          description: The ID of the task 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 tasks.
      - name: updatetask
        method: PATCH
        description: Hubspot Update a Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: taskId
          in: path
          type: string
          description: The ID of the task to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletetask
        method: DELETE
        description: Hubspot Archive a Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: taskId
          in: path
          type: string
          description: The ID of the task to archive.
          required: true
    authentication:
      type: bearer
      token: '{{env.HUBSPOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: engagement-tasks-tasks-rest
    port: 8080
    description: REST adapter for HubSpot Engagement Tasks API — Tasks. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/crm/v3/objects/tasks
      name: crm-v3-objects-tasks
      description: REST surface for crm-v3-objects-tasks.
      operations:
      - method: GET
        name: listtasks
        description: Hubspot List Tasks
        call: engagement-tasks-tasks.listtasks
        with:
          limit: rest.limit
          after: rest.after
          properties: rest.properties
          archived: rest.archived
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createtask
        description: Hubspot Create a Task
        call: engagement-tasks-tasks.createtask
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/crm/v3/objects/tasks/search
      name: crm-v3-objects-tasks-search
      description: REST surface for crm-v3-objects-tasks-search.
      operations:
      - method: POST
        name: searchtasks
        description: Hubspot Search Tasks
        call: engagement-tasks-tasks.searchtasks
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/crm/v3/objects/tasks/{taskid}
      name: crm-v3-objects-tasks-taskid
      description: REST surface for crm-v3-objects-tasks-taskId.
      operations:
      - method: GET
        name: gettask
        description: Hubspot Get a Task
        call: engagement-tasks-tasks.gettask
        with:
          taskId: rest.taskId
          properties: rest.properties
          archived: rest.archived
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatetask
        description: Hubspot Update a Task
        call: engagement-tasks-tasks.updatetask
        with:
          taskId: rest.taskId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletetask
        description: Hubspot Archive a Task
        call: engagement-tasks-tasks.deletetask
        with:
          taskId: rest.taskId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: engagement-tasks-tasks-mcp
    port: 9090
    transport: http
    description: MCP adapter for HubSpot Engagement Tasks API — Tasks. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: hubspot-list-tasks
      description: Hubspot List Tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: engagement-tasks-tasks.listtasks
      with:
        limit: tools.limit
        after: tools.after
        properties: tools.properties
        archived: tools.archived
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-create-task
      description: Hubspot Create a Task
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: engagement-tasks-tasks.createtask
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-search-tasks
      description: Hubspot Search Tasks
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: engagement-tasks-tasks.searchtasks
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-get-task
      description: Hubspot Get a Task
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: engagement-tasks-tasks.gettask
      with:
        taskId: tools.taskId
        properties: tools.properties
        archived: tools.archived
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-update-task
      description: Hubspot Update a Task
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: engagement-tasks-tasks.updatetask
      with:
        taskId: tools.taskId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-archive-task
      description: Hubspot Archive a Task
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: engagement-tasks-tasks.deletetask
      with:
        taskId: tools.taskId
      outputParameters:
      - type: object
        mapping: $.