Easy Labs
SDKsMCP Server

MCP tools

Read-only tools the MCP server exposes for AI agents.

The MCP server registers ten read-only tools today. Each tool returns a human-readable summary plus the raw entity payload — formatted for LLM consumption (currency formatted, dates ISO-normalized, statuses spelled out).

Write operations (creating transfers, sending invoices, scheduling payouts) are not exposed yet — see the modernization roadmap for Phase 2.

Transfers

list_transfers

List recent transfers with optional pagination and status filter.

InputTypeNotes
limitintegerDefault 25, max 100
offsetintegerPagination cursor
statusstringe.g. succeeded, failed, pending

get_transfer

Retrieve a single transfer by ID.

InputTypeNotes
idstringTransfer ID

Disputes

list_disputes

List disputes filed against your transfers.

InputTypeNotes
limitintegerDefault 25, max 100
offsetintegerPagination cursor
statestringe.g. open, won, lost

get_dispute

Retrieve a single dispute by ID.

InputTypeNotes
idstringDispute ID

Settlements

list_settlements

List settlement batches with their totals and status.

InputTypeNotes
limitintegerDefault 25, max 100
offsetintegerPagination cursor

get_settlement

Retrieve a single settlement by ID.

InputTypeNotes
idstringSettlement ID

Customers

list_customers

List customers, newest first.

InputTypeNotes
limitintegerDefault 25, max 100
offsetintegerPagination cursor

get_customer

Retrieve a single customer by ID.

InputTypeNotes
idstringCustomer ID

Balance transfers

list_balance_transfers

List balance transfers (payouts to your bank).

InputTypeNotes
limitintegerDefault 25, max 100
offsetintegerPagination cursor

get_balance_transfer

Retrieve a single balance transfer by ID.

InputTypeNotes
idstringBalance transfer ID

What's missing

The MCP server today does not yet expose:

  • Payments: payment instruments, orders, refunds, sessions, hosted/embedded checkout, payment links, authorizations
  • Billing: subscriptions, products, prices, invoices, coupons, customer portal, dunning
  • Treasury beyond settlements: payouts, recipients, bank-account management, payout links, auto-transfer rules, W-9 / tax documents
  • Account & operations: branding, custom domains, webhooks management, files, security rules
  • Write tools: every tool today is read-only

Tracked in the easy-mcp modernization plan — Project 2 (auto-generate tools from OpenAPI) will close this gap to ~112 tools matching the SDK surface.

On this page