Dust · Capability

Dust Search API — Search

Dust Search API — Search. 3 operations. Lead operation: Search for Nodes in the Workspace (streaming). Self-contained Naftiko capability covering one Dust business surface.

Dust Search API — Search is a Naftiko capability published by Dust, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the POST and GET methods rooted at /v1/api/v1/w/{…}/search.

The capability includes 1 read-only operation and 2 state-changing operations. Lead operation: Search for Nodes in the Workspace (streaming). Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Dust and Search.

Run with Naftiko DustSearch

What You Can Do

GET
Get api v1 w search — Search for Nodes in the Workspace (streaming)
/v1/api/v1/w/{wId}/search
POST
Post api v1 w search — Search for Nodes in the Workspace
/v1/api/v1/w/{wId}/search
POST
Post api v1 w search tools upload — Upload a Tool File
/v1/api/v1/w/{wId}/search/tools/upload

MCP Tools

dust-get-api-v1-w-search

Search for Nodes in the Workspace (streaming)

read-only idempotent
dust-post-api-v1-w-search

Search for Nodes in the Workspace

dust-post-api-v1-w-search-tools-upload

Upload a Tool File

Capability Spec

search-search.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Dust Search API — Search
  description: 'Dust Search API — Search. 3 operations. Lead operation: Search for Nodes in the Workspace (streaming). Self-contained
    Naftiko capability covering one Dust business surface.'
  tags:
  - Dust
  - Search
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
- namespace: env
  keys:
    DUST_API_KEY: DUST_API_KEY
    DUST_WORKSPACE_ID: DUST_WORKSPACE_ID
capability:
  consumes:
  - type: http
    namespace: search-search
    baseUri: https://dust.tt
    description: Dust Search API — Search business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-w-wid-search
      path: /api/v1/w/{wId}/search
      operations:
      - name: get-api-v1-w-search
        method: GET
        description: Search for Nodes in the Workspace (streaming)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters: []
      - name: post-api-v1-w-search
        method: POST
        description: Search for Nodes in the Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v1-w-wid-search-tools-upload
      path: /api/v1/w/{wId}/search/tools/upload
      operations:
      - name: post-api-v1-w-search-tools-upload
        method: POST
        description: Upload a Tool File
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      value: '{{env.DUST_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: search-search-rest
    port: 8080
    description: REST adapter for Dust Search API — Search. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/v1/w/{wId}/search
      name: api-v1-w-wid-search
      description: REST surface for /api/v1/w/{wId}/search.
      operations:
      - method: GET
        name: get-api-v1-w-search
        description: Search for Nodes in the Workspace (streaming)
        call: search-search.get-api-v1-w-search
        with: {}
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post-api-v1-w-search
        description: Search for Nodes in the Workspace
        call: search-search.post-api-v1-w-search
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/w/{wId}/search/tools/upload
      name: api-v1-w-wid-search-tools-upload
      description: REST surface for /api/v1/w/{wId}/search/tools/upload.
      operations:
      - method: POST
        name: post-api-v1-w-search-tools-upload
        description: Upload a Tool File
        call: search-search.post-api-v1-w-search-tools-upload
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: search-search-mcp
    port: 9090
    transport: http
    description: MCP adapter for Dust Search API — Search. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: dust-get-api-v1-w-search
      description: Search for Nodes in the Workspace (streaming)
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: search-search.get-api-v1-w-search
      with: {}
      outputParameters:
      - type: object
        mapping: $.
    - name: dust-post-api-v1-w-search
      description: Search for Nodes in the Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: search-search.post-api-v1-w-search
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: dust-post-api-v1-w-search-tools-upload
      description: Upload a Tool File
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: search-search.post-api-v1-w-search-tools-upload
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.