Skip to main content
Glama

platformFees.list

Retrieve a list of platform fees from Ryft to track financial charges. Use parameters to sort results and control the number of entries returned.

Instructions

List Ryft platform fees.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ascendingNo
limitNo

Implementation Reference

  • Handler function for platformFees.list tool.
    async (args) => {
      const query = listPlatformFeesSchema.parse(args) as Record<string, QueryValue>;
      return client.get('/platform-fees', { query });
    },
  • Registration of platformFees.list tool.
    registerTool(
      'platformFees.list',
      'List Ryft platform fees.',
      listPlatformFeesSchema.shape,
      async (args) => {
        const query = listPlatformFeesSchema.parse(args) as Record<string, QueryValue>;
        return client.get('/platform-fees', { query });
      },
    );
  • Input schema validation for platformFees.list.
    const listPlatformFeesSchema = z.object({
      ascending: z.boolean().optional(),
      limit: z.number().int().positive().max(100).optional(),
    });

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