HubSpot · Capability

HubSpot Conversations API — Actors

HubSpot Conversations API — Actors. 2 operations. Lead operation: Hubspot List Actors. Self-contained Naftiko capability covering one Hubspot business surface.

Run with Naftiko HubspotActors

What You Can Do

GET
Listactors — Hubspot List Actors
/v1/conversations/v3/conversations/actors
GET
Getactorbyid — Hubspot Retrieve an Actor
/v1/conversations/v3/conversations/actors/{actorid}

MCP Tools

hubspot-list-actors

Hubspot List Actors

read-only idempotent
hubspot-retrieve-actor

Hubspot Retrieve an Actor

read-only idempotent

Capability Spec

conversations-actors.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: HubSpot Conversations API — Actors
  description: 'HubSpot Conversations API — Actors. 2 operations. Lead operation: Hubspot List Actors. Self-contained Naftiko
    capability covering one Hubspot business surface.'
  tags:
  - Hubspot
  - Actors
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HUBSPOT_API_KEY: HUBSPOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: conversations-actors
    baseUri: https://api.hubapi.com
    description: HubSpot Conversations API — Actors business capability. Self-contained, no shared references.
    resources:
    - name: conversations-v3-conversations-actors
      path: /conversations/v3/conversations/actors
      operations:
      - name: listactors
        method: GET
        description: Hubspot List Actors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
          description: Maximum number of actors per page
        - name: after
          in: query
          type: string
          description: Pagination cursor for the next page
    - name: conversations-v3-conversations-actors-actorId
      path: /conversations/v3/conversations/actors/{actorId}
      operations:
      - name: getactorbyid
        method: GET
        description: Hubspot Retrieve an Actor
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: actorId
          in: path
          type: string
          description: The unique identifier of the actor to retrieve
          required: true
    authentication:
      type: bearer
      token: '{{env.HUBSPOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: conversations-actors-rest
    port: 8080
    description: REST adapter for HubSpot Conversations API — Actors. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/conversations/v3/conversations/actors
      name: conversations-v3-conversations-actors
      description: REST surface for conversations-v3-conversations-actors.
      operations:
      - method: GET
        name: listactors
        description: Hubspot List Actors
        call: conversations-actors.listactors
        with:
          limit: rest.limit
          after: rest.after
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/conversations/v3/conversations/actors/{actorid}
      name: conversations-v3-conversations-actors-actorid
      description: REST surface for conversations-v3-conversations-actors-actorId.
      operations:
      - method: GET
        name: getactorbyid
        description: Hubspot Retrieve an Actor
        call: conversations-actors.getactorbyid
        with:
          actorId: rest.actorId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: conversations-actors-mcp
    port: 9090
    transport: http
    description: MCP adapter for HubSpot Conversations API — Actors. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: hubspot-list-actors
      description: Hubspot List Actors
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: conversations-actors.listactors
      with:
        limit: tools.limit
        after: tools.after
      outputParameters:
      - type: object
        mapping: $.
    - name: hubspot-retrieve-actor
      description: Hubspot Retrieve an Actor
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: conversations-actors.getactorbyid
      with:
        actorId: tools.actorId
      outputParameters:
      - type: object
        mapping: $.