list_invoices
Retrieve and display all invoices from your Waldur instance to monitor billing information and manage financial records.
Instructions
List all invoices
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/waldur_mcp_server/server.py:85-88 (handler)The handler function for the 'list_invoices' MCP tool. It is decorated with @mcp.tool() for registration and executes by calling the Waldur API's invoices_list function.@mcp.tool() async def list_invoices() -> list[Invoice]: """List all invoices""" return await invoices_list.asyncio(client=client)