Skip to main content
Glama

transfers.list

Retrieve and display a list of Ryft transfers with options to filter, sort, and limit results for financial tracking.

Instructions

List Ryft transfers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ascendingNo
limitNo
startsAfterNo

Implementation Reference

  • The handler function that executes the 'transfers.list' tool. It parses the arguments and makes a GET request to the Ryft API.
    async (args) => {
      const query = listTransfersSchema.parse(args) as Record<string, QueryValue>;
      return client.get('/transfers', { query });
    },
  • Zod schema defining the input parameters for the 'transfers.list' tool.
    const listTransfersSchema = z.object({
      ascending: z.boolean().optional(),
      limit: z.number().int().positive().max(100).optional(),
      startsAfter: z.string().optional(),
    });
  • Tool registration for 'transfers.list' in the registerTransferTools function.
    registerTool(
      'transfers.list',
      'List Ryft transfers.',
      listTransfersSchema.shape,
      async (args) => {
        const query = listTransfersSchema.parse(args) as Record<string, QueryValue>;
        return client.get('/transfers', { query });
      },
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bkawk/ryft-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server