---
name: agency-payouts
description: Payouts actions of the Favorited Agency Dashboard MCP server (5): payouts.account, payouts.invoices, payouts.manageLink, payouts.pending, payouts.upcoming.
metadata:
  area: payouts
  actions: 5
  server: https://mcp.agency.preprod.favorited.app/mcp
---

# Payouts via the Favorited Agency MCP server

Connect to `https://mcp.agency.preprod.favorited.app/mcp` (Streamable HTTP, OAuth — see `https://mcp.agency.preprod.favorited.app/auth.md`). Call `whoami` first, then `agency.search` / `agency.describe` / `agency.execute` for the actions below, or the front-door tools where one exists.

## Actions

### agency/payouts.account

The payout (bank) account connection state.

- Class: `read`.
- Requires: `agency.financials.get`.
- REST equivalent: `GET /api/v1/payouts/account`.
- Parameters: none.

### agency/payouts.invoices

Invoice history.

- Class: `read`.
- Requires: `agency.financials.get`.
- REST equivalent: `GET /api/v1/payouts/invoices`.
- Parameters:
  - `limit` (integer)
  - `offset` (integer)

### agency/payouts.manageLink

Mint a link to manage the payout account at the payment provider.

- Class: `write` — requires the Write scope, writes enabled for the account, and `confirm: true` after the user approved.
- Requires: `agency.financials.manage`.
- REST equivalent: `POST /api/v1/payouts/account/manage-link`.
- Parameters:
  - `intent` (`manage` | `requirements`, required)

### agency/payouts.pending

Pending payouts and their eligibility.

- Class: `read`.
- Requires: `agency.financials.get`.
- REST equivalent: `GET /api/v1/payouts/pending`.
- Parameters: none.

### agency/payouts.upcoming

Upcoming scheduled payouts with statuses.

- Class: `read`.
- Requires: `agency.financials.get`.
- REST equivalent: `GET /api/v1/payouts/upcoming`.
- Parameters:
  - `recent` (`all`)
