customers.get
Retrieve customer details from Ryft MCP using a unique identifier to access financial account information and manage payment relationships.
Instructions
Get a Ryft customer by id.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/customers.ts:35-40 (handler)The registration and handler implementation for the 'customers.get' tool.
registerTool( 'customers.get', 'Get a Ryft customer by id.', { id: z.string().min(1) }, async ({ id }) => client.get(`/customers/${id}`), );