Is there a way for tools to automatically be turned on without having to click 'Allow'? I'm interested in calling my Dust agent through the API e.g. through a Make.com automation into Slack but then it won't work because I assume there's an error anytime it tries to access certain tools that would need to be allowed. Is there a way to overcome this?
GrowthMasters Team from the tools settings, you can reduce the "stake" of an action. When stake is low, the validation prompt will be shown each time a new user uses it. But the user can click on "don't ask again".
Does this option exist for GitHub/Hubspot MCP provided by Dust? 🙂
I know it works with the native Notion connection which doesn't ask me for confirmation anymore. If you want me to, I can ask the team for GH and Hubspot
And GitHub if that's possible 🙏
Luc Lagrange He is the answer I got from the team : it looks like our Make app does have this setting to true in version 1.1.6 of the Dust integration for the module Action: Talk to an Agent If needed in a custom API call you could use something like this. Does this help? POST https://dust.tt/api/v1/w/{{dust.workspace_id}}/assistant/conversations
{
"message": {
"content": "{{steps.trigger.your_trigger_content}}",
"mentions": [{ "configurationId": "xxx" }],
"context": {
"username": "pipedream",
"timezone": "Europe/Paris",
"origin": "api"
}
},
"skipToolsValidation": true,
"blocking": true
}