StackOne · Capability

Marketing — Lists

Marketing — Lists. 2 operations. Lead operation: Get all Lists. Self-contained Naftiko capability covering one Stackone business surface.

Run with Naftiko StackoneLists

What You Can Do

GET
Crmlistlists — Get all Lists
/v1/unified/crm/lists
GET
Crmgetlist — Get List
/v1/unified/crm/lists/{id}

MCP Tools

get-all-lists

Get all Lists

read-only idempotent
get-list

Get List

read-only idempotent

Capability Spec

stackone-lists.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Marketing — Lists
  description: 'Marketing — Lists. 2 operations. Lead operation: Get all Lists. Self-contained Naftiko capability covering
    one Stackone business surface.'
  tags:
  - Stackone
  - Lists
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    STACKONE_API_KEY: STACKONE_API_KEY
capability:
  consumes:
  - type: http
    namespace: stackone-lists
    baseUri: https://api.stackone.com
    description: Marketing — Lists business capability. Self-contained, no shared references.
    resources:
    - name: unified-crm-lists
      path: /unified/crm/lists
      operations:
      - name: crmlistlists
        method: GET
        description: Get all Lists
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: string
          description: The page number of the results to fetch
        - name: page_size
          in: query
          type: string
          description: The number of results per page
        - name: raw
          in: query
          type: boolean
          description: Indicates that the raw request result is returned
        - name: fields
          in: query
          type: string
          description: The comma separated list of fields to return in the response (if empty, all fields are returned)
        - name: sync_token
          in: query
          type: string
          description: The sync token to select the only updated results
        - name: updated_after
          in: query
          type: string
          description: Use a string with a date to only select results updated after that given date
        - name: proxy
          in: query
          type: object
          description: Query parameters that can be used to pass through parameters to the underlying provider request by
            surrounding them with "proxy" key
        - name: x-account-id
          in: header
          type: string
          description: The account identifier
          required: true
    - name: unified-crm-lists-id
      path: /unified/crm/lists/{id}
      operations:
      - name: crmgetlist
        method: GET
        description: Get List
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: page
          in: query
          type: string
          description: The page number of the results to fetch
        - name: page_size
          in: query
          type: string
          description: The number of results per page
        - name: raw
          in: query
          type: boolean
          description: Indicates that the raw request result is returned
        - name: fields
          in: query
          type: string
          description: The comma separated list of fields to return in the response (if empty, all fields are returned)
        - name: sync_token
          in: query
          type: string
          description: The sync token to select the only updated results
        - name: updated_after
          in: query
          type: string
          description: Use a string with a date to only select results updated after that given date
        - name: proxy
          in: query
          type: object
          description: Query parameters that can be used to pass through parameters to the underlying provider request by
            surrounding them with "proxy" key
        - name: x-account-id
          in: header
          type: string
          description: The account identifier
          required: true
    authentication:
      type: basic
      username: '{{env.STACKONE_USER}}'
      password: '{{env.STACKONE_PASS}}'
  exposes:
  - type: rest
    namespace: stackone-lists-rest
    port: 8080
    description: REST adapter for Marketing — Lists. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/unified/crm/lists
      name: unified-crm-lists
      description: REST surface for unified-crm-lists.
      operations:
      - method: GET
        name: crmlistlists
        description: Get all Lists
        call: stackone-lists.crmlistlists
        with:
          page: rest.page
          page_size: rest.page_size
          raw: rest.raw
          fields: rest.fields
          sync_token: rest.sync_token
          updated_after: rest.updated_after
          proxy: rest.proxy
          x-account-id: rest.x-account-id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/unified/crm/lists/{id}
      name: unified-crm-lists-id
      description: REST surface for unified-crm-lists-id.
      operations:
      - method: GET
        name: crmgetlist
        description: Get List
        call: stackone-lists.crmgetlist
        with:
          id: rest.id
          page: rest.page
          page_size: rest.page_size
          raw: rest.raw
          fields: rest.fields
          sync_token: rest.sync_token
          updated_after: rest.updated_after
          proxy: rest.proxy
          x-account-id: rest.x-account-id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: stackone-lists-mcp
    port: 9090
    transport: http
    description: MCP adapter for Marketing — Lists. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-all-lists
      description: Get all Lists
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: stackone-lists.crmlistlists
      with:
        page: tools.page
        page_size: tools.page_size
        raw: tools.raw
        fields: tools.fields
        sync_token: tools.sync_token
        updated_after: tools.updated_after
        proxy: tools.proxy
        x-account-id: tools.x-account-id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-list
      description: Get List
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: stackone-lists.crmgetlist
      with:
        id: tools.id
        page: tools.page
        page_size: tools.page_size
        raw: tools.raw
        fields: tools.fields
        sync_token: tools.sync_token
        updated_after: tools.updated_after
        proxy: tools.proxy
        x-account-id: tools.x-account-id
      outputParameters:
      - type: object
        mapping: $.