Dust · Arazzo Workflow

Dust Suggest a Mention and Start a Conversation

Version 1.0.0

Resolve a mention query into an agent suggestion, then open a conversation that mentions it.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AgentsArtificial IntelligenceCustom WorkflowsData SourcesDustEnterprise AIKnowledge-ManagementLLMMCPMulti-ModelRAGArazzoWorkflows

Provider

dust-tt

Workflows

suggest-mention-and-converse
Get an agent mention suggestion and open a conversation mentioning it.
Requests mention suggestions limited to agents, and when at least one is returned, creates a conversation that mentions the first suggested agent.
2 steps inputs: apiToken, content, query, title, wId outputs: conversationId, suggestedAgentId
1
getSuggestions
{$sourceDescriptions.mentionsApi.url}#/paths/~1api~1v1~1w~1{wId}~1assistant~1mentions~1suggestions/get
Fetch mention suggestions limited to agents for the supplied query and capture the id of the first suggested agent.
2
createConversation
{$sourceDescriptions.conversationsApi.url}#/paths/~1api~1v1~1w~1{wId}~1assistant~1conversations/post
Open a conversation seeded with a message that mentions the first suggested agent.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dust Suggest a Mention and Start a Conversation
  summary: Resolve a mention query into an agent suggestion, then open a conversation that mentions it.
  description: >-
    Turns a free-text mention query into a working conversation. The workflow
    fetches mention suggestions filtered to agents for a query string, branches
    when nothing matches, otherwise opens a new conversation seeded with a
    message that mentions the first suggested agent. Each step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: conversationsApi
  url: ../openapi/dust-tt-conversations-api-openapi.yml
  type: openapi
- name: mentionsApi
  url: ../openapi/dust-tt-mentions-api-openapi.yml
  type: openapi
workflows:
- workflowId: suggest-mention-and-converse
  summary: Get an agent mention suggestion and open a conversation mentioning it.
  description: >-
    Requests mention suggestions limited to agents, and when at least one is
    returned, creates a conversation that mentions the first suggested agent.
  inputs:
    type: object
    required:
    - apiToken
    - wId
    - query
    - content
    properties:
      apiToken:
        type: string
        description: Dust API key used as the Bearer token.
      wId:
        type: string
        description: The workspace identifier.
      query:
        type: string
        description: Mention query string used to filter agent suggestions.
      content:
        type: string
        description: The text of the first human message in the conversation.
      title:
        type: string
        description: Optional title for the new conversation.
  steps:
  - stepId: getSuggestions
    description: >-
      Fetch mention suggestions limited to agents for the supplied query and
      capture the id of the first suggested agent.
    operationPath: '{$sourceDescriptions.mentionsApi.url}#/paths/~1api~1v1~1w~1{wId}~1assistant~1mentions~1suggestions/get'
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: wId
      in: path
      value: $inputs.wId
    - name: query
      in: query
      value: $inputs.query
    - name: select
      in: query
      value:
      - agents
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      suggestedAgentId: $response.body#/suggestions/0/id
    onSuccess:
    - name: hasSuggestion
      type: goto
      stepId: createConversation
      criteria:
      - context: $response.body
        condition: $.suggestions.length > 0
        type: jsonpath
    - name: noSuggestion
      type: end
      criteria:
      - context: $response.body
        condition: $.suggestions.length == 0
        type: jsonpath
  - stepId: createConversation
    description: >-
      Open a conversation seeded with a message that mentions the first
      suggested agent.
    operationPath: '{$sourceDescriptions.conversationsApi.url}#/paths/~1api~1v1~1w~1{wId}~1assistant~1conversations/post'
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiToken
    - name: wId
      in: path
      value: $inputs.wId
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.title
        blocking: false
        message:
          content: $inputs.content
          mentions:
          - configurationId: $steps.getSuggestions.outputs.suggestedAgentId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      conversationId: $response.body#/conversation/sId
  outputs:
    suggestedAgentId: $steps.getSuggestions.outputs.suggestedAgentId
    conversationId: $steps.createConversation.outputs.conversationId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/dust-tt-suggest-mention-and-converse-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.