Skip to main content
Glama

persons.get

Retrieve specific person details from Ryft MCP using account and person identifiers to access financial resource information.

Instructions

Get a Ryft person by id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountIdYes
personIdYes

Implementation Reference

  • The handler for persons.get which performs a GET request to retrieve a person by their ID.
    registerTool(
      'persons.get',
      'Get a Ryft person by id.',
      getPersonSchema.shape,
      async (args) => {
        const { accountId, personId } = getPersonSchema.parse(args);
        return client.get(`/accounts/${accountId}/persons/${personId}`);
      },
    );
  • Schema definition for persons.get tool inputs.
    const getPersonSchema = z.object({
      accountId: z.string().min(1),
      personId: z.string().min(1),
    });
  • Registration function for person-related tools including persons.get.
    export function registerPersonTools(registerTool: ToolRegistrar, client: RyftHttpClient) {

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