Skip to main content
Glama

accounts.verify

Verify Ryft accounts to enable financial operations by submitting required identification data through the MCP server interface.

Instructions

Request account verification for a Ryft account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • The handler for accounts.verify, which performs a POST request to /accounts/{id}/verify.
    registerTool(
      'accounts.verify',
      'Request account verification for a Ryft account.',
      verifyAccountSchema.shape,
      async (args) => {
        const { id } = verifyAccountSchema.parse(args);
        return client.post(`/accounts/${id}/verify`, {});
      },
    );
  • The input schema for the accounts.verify tool.
    const verifyAccountSchema = z.object({
      id: z.string().min(1),
    });
  • Registration of the accounts.verify tool within the registerAccountTools function.
    registerTool(
      'accounts.verify',
      'Request account verification for a Ryft account.',
      verifyAccountSchema.shape,
      async (args) => {
        const { id } = verifyAccountSchema.parse(args);
        return client.post(`/accounts/${id}/verify`, {});
      },
    );

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