transfers.get
Retrieve a specific Ryft transfer by its unique identifier to access transaction details and status information.
Instructions
Get a Ryft transfer by id.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/tools/transfers.ts:44-49 (handler)Implementation of the 'transfers.get' MCP tool handler within registerTransferTools.
registerTool( 'transfers.get', 'Get a Ryft transfer by id.', { id: z.string().min(1) }, async ({ id }) => client.get(`/transfers/${id}`), );