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.
account-summaryrevenue-summarylist-payments.
{
"tool": "account-summary",
"parameters": {}
}
13 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. 13 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.
account-summary
Stato del conto Stripe: nome attivita, valuta, se e un account di prova o reale, saldo disponibile e importi in arrivo. Da usare come prima verifica.
Stripe account status: business name, currency, whether it is a test or live account, available balance and incoming amounts. Use it as a first check.
{
"tool": "account-summary",
"parameters": {}
}
revenue-summary
Quanto ha incassato l attivita in un periodo, con confronto sul periodo precedente e numero di pagamenti. Preferiscilo a list-payments quando la domanda e "quanto ho incassato".
How much the business collected over a period, with a comparison against the previous period and the number of payments. Prefer it to list-payments when the question is "how much did I make".
Puo’ usare:It may use: periodo
{
"tool": "revenue-summary",
"parameters": {
"periodo": "<string>"
}
}
list-payments
Elenco dei pagamenti ricevuti, dal piu recente. Filtri per stato e periodo. Restituisce importi gia convertiti in unita di valuta (non centesimi).
List of the payments received, most recent first. Filters by status and period. Returns amounts already converted into currency units (not cents).
Puo’ usare:It may use: stato da a cliente limite
{
"tool": "list-payments",
"parameters": {
"stato": "<string>",
"da": "<string>",
"a": "<string>"
}
}
list-customers
Elenco dei clienti registrati su Stripe, oppure ricerca per email.
List of the customers registered on Stripe, or search by email.
Puo’ usare:It may use: email limite
{
"tool": "list-customers",
"parameters": {
"email": "<string>",
"limite": "<integer>"
}
}
list-subscriptions
Abbonamenti dell account, con piano, importo ricorrente e data del prossimo rinnovo.
Subscriptions of the account, with plan, recurring amount and next renewal date.
Puo’ usare:It may use: stato limite
{
"tool": "list-subscriptions",
"parameters": {
"stato": "<string>",
"limite": "<integer>"
}
}
subscriptions-renewing
Abbonamenti che si rinnovano (o scadono) entro un certo numero di giorni: serve per avvisare i clienti o prevedere gli incassi.
Subscriptions renewing (or expiring) within a given number of days: use it to warn customers or forecast revenue.
Puo’ usare:It may use: giorni
{
"tool": "subscriptions-renewing",
"parameters": {
"giorni": "<integer>"
}
}
list-invoices
Fatture emesse. Con stato "non_pagate" restituisce gli insoluti da recuperare, con importo e da quanti giorni sono scaduti.
Invoices issued. With status "non_pagate" it returns the outstanding ones to collect, with the amount and how many days they are overdue.
Puo’ usare:It may use: stato limite
{
"tool": "list-invoices",
"parameters": {
"stato": "<string>",
"limite": "<integer>"
}
}
list-disputes
Contestazioni e storni aperti dai clienti: importo, motivo e scadenza per rispondere.
Disputes and chargebacks opened by customers: amount, reason and deadline to respond.
Puo’ usare:It may use: limite
{
"tool": "list-disputes",
"parameters": {
"limite": "<integer>"
}
}
list-payouts
Versamenti di Stripe verso il conto bancario: importo, stato e data prevista di arrivo.
Stripe payouts to the bank account: amount, status and expected arrival date.
Puo’ usare:It may use: limite
{
"tool": "list-payouts",
"parameters": {
"limite": "<integer>"
}
}
list-catalog
Prodotti e prezzi configurati su Stripe: serve per sapere cosa si puo vendere e con quale prezzo (l id del prezzo si usa per creare abbonamenti e link di pagamento).
Products and prices configured on Stripe: use it to know what can be sold and at what price (the price id is used to create subscriptions and payment links).
Puo’ usare:It may use: limite
{
"tool": "list-catalog",
"parameters": {
"limite": "<integer>"
}
}
mrr-summary
Fotografia degli abbonamenti: ricavo ricorrente mensile, quanti abbonati attivi e in prova, quanti insoluti e quanti hanno disdetto.
Snapshot of the subscriptions: monthly recurring revenue, how many subscribers are active and in trial, how many are unpaid and how many have cancelled.
{
"tool": "mrr-summary",
"parameters": {}
}
access-summary
Chi ha accesso a QUESTO agente: utenti conosciuti, quanti hanno un accesso valido, come sono distribuiti per stato e quale quota di prova e attiva.
Who has access to THIS agent: known users, how many have valid access, how they are distributed by status and which share of trials is active.
{
"tool": "access-summary",
"parameters": {}
}
setup-status
Diagnosi della configurazione: dice se la chiave funziona, se il webhook e collegato davvero su Stripe, se il prezzo da vendere esiste e cosa manca per poter incassare. Chiamalo PRIMA di promettere al titolare che puo vendere, e ogni volta che un pagamento non si trasforma in accesso.
Diagnosis of the configuration: it tells you whether the key works, whether the webhook is really connected on Stripe, whether the price to sell exists and what is missing in order to get paid. Call it BEFORE promising the owner that they can sell, and every time a payment does not turn into access.
{
"tool": "setup-status",
"parameters": {}
}
Elenco rilevato il 11/08/2026. List observed on Aug 11, 2026.