Quando colleghi questo connettore a un agente, l’agente non impara gli strumenti a memoria: se li fa dire, e li usa quando servono. Per questo un connettore aggiornato porta strumenti nuovi senza che l’agente vada rifatto.
Durante una conversazione il giro e’ sempre lo stesso: l’agente capisce dalla tua richiesta quale strumento serve e con quali valori usarlo, il gateway lo esegue e restituisce il risultato, e l’agente te lo racconta a parole. Chi compie l’operazione resti tu: l’accesso avviene con credenziali verificate, cosi’ il connettore puo’ distinguere cosa e’ permesso a te da cosa e’ permesso a un altro.
When you connect this connector to an agent, the agent doesn’t learn its tools by heart: it is told what they are, and uses them when they are needed. That is why an updated connector brings new tools along without the agent having to be rebuilt.
During a conversation the loop is always the same: the agent works out from your request which tool is needed and with which values, the gateway runs it and returns the result, and the agent tells you in plain words. You remain the one performing the operation: access happens with verified credentials, so the connector can tell what you are allowed to do from what someone else is allowed to do.
schedule_tasklist_scheduled_taskscancel_scheduled_task.
{
"tool": "schedule_task",
"parameters": {
"label": "<string>",
"prompt": "<string>"
}
}
6 strumenti. Non li chiami tu: li sceglie l’agente in base a quello che gli chiedi. Servono a farti capire cosa puoi aspettarti e quali informazioni ti verranno chieste. L’elenco effettivo puo’ variare con la configurazione del collegamento. 6 tools. You don’t call them yourself: the agent picks them based on what you ask. They are here so you can see what to expect and which details you will be asked for. The actual list may vary depending on how the connection is configured.
schedule_task
Crea un task eseguito autonomamente dal gateway. Due modalita' di scheduling: (A) RICORRENTE -> passa `cron` (es. "ogni mattina alle 6"); (B) UNA TANTUM (one-shot) -> passa `run_in_minutes` per tempi RELATIVI ("tra 10 minuti", "fra 2 ore") oppure `run_at` (ISO8601) per un istante ASSOLUTO ("oggi all…
Create a task executed autonomously by the gateway. Two scheduling modes: (A) RECURRING -> pass `cron` (e.g. "every morning at 6"); (B) ONE-SHOT -> pass `run_in_minutes` for RELATIVE times ("in 10 minutes", "in 2 hours") or `run_at` (ISO8601) for an ABSOLUTE instant ("today at…
Gli serve:It needs: labelstring promptstring
Puo’ usare:It may use: cron run_in_minutes run_at steps step_timeout_seconds timezone mcp_server_ids dry_run
{
"tool": "schedule_task",
"parameters": {
"label": "<string>",
"prompt": "<string>"
}
}
list_scheduled_tasks
Elenca i task ricorrenti dell'utente corrente schedulati SU QUESTO agente AIsuru (isolation per (user_email, memori_id)). NON vedi task di altri utenti ne' task creati su altri agenti, anche se sono tuoi. Restituisce id, label, cron, prompt, status, last_run_at, next_run_at.
List the current user's recurring tasks scheduled ON THIS AIsuru agent (isolation by (user_email, memori_id)). You do NOT see other users' tasks, nor tasks created on other agents, even if they are yours. Returns id, label, cron, prompt, status, last_run_at, next_run_at.
Puo’ usare:It may use: status
{
"tool": "list_scheduled_tasks",
"parameters": {
"status": "<string>"
}
}
cancel_scheduled_task
Cancella definitivamente UN task ricorrente per id. Permesso solo sui propri task creati su questo agente. Per cancellarne piu' di uno in colpo solo usa `cancel_all_scheduled_tasks`.
Permanently delete ONE recurring task by id. Allowed only on your own tasks created on this agent. To delete more than one at once use `cancel_all_scheduled_tasks`.
Gli serve:It needs: idstring
{
"tool": "cancel_scheduled_task",
"parameters": {
"id": "<string>"
}
}
cancel_all_scheduled_tasks
Cancella TUTTI i task ricorrenti dell'utente corrente schedulati SU QUESTO agente AIsuru. Doppio scope di sicurezza: principal owner_keys + memori_id agente. Usa SEMPRE questo tool quando l'utente dice "cancella tutti i task", "elimina tutti i task schedulati", "svuota i task" — NON cercare di simul…
Delete ALL the current user's recurring tasks scheduled ON THIS AIsuru agent. Double security scope: principal owner_keys + agent memori_id. ALWAYS use this tool when the user says "delete all the tasks", "remove all scheduled tasks", "clear the tasks" — do NOT try to simul…
Puo’ usare:It may use: status
{
"tool": "cancel_all_scheduled_tasks",
"parameters": {
"status": "<string>"
}
}
pause_scheduled_task
Mette in pausa un task ricorrente (lo si puo' riprendere dopo). Permesso solo sui propri task.
Pauses a recurring task (it can be resumed later). Allowed only on your own tasks.
Gli serve:It needs: idstring
Puo’ usare:It may use: reason
{
"tool": "pause_scheduled_task",
"parameters": {
"id": "<string>"
}
}
resume_scheduled_task
Riprende un task ricorrente in pausa. Permesso solo sui propri task.
Resumes a paused recurring task. Allowed only on your own tasks.
Gli serve:It needs: idstring
{
"tool": "resume_scheduled_task",
"parameters": {
"id": "<string>"
}
}
Elenco rilevato il 11/08/2026. List observed on Aug 11, 2026.