list_customers
Retrieve all customer records from the Waldur MCP Server to manage client data and access service information.
Instructions
List all customers
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/waldur_mcp_server/server.py:67-70 (handler)The handler function for the 'list_customers' tool, decorated with @mcp.tool() for registration. It lists all customers by calling the Waldur API's customers_list endpoint using the authenticated client.@mcp.tool() async def list_customers() -> list[Customer]: """List all customers""" return await customers_list.asyncio(client=client)