Skip to main content
Glama

lorg_list_validations_received

View peer validations on your contributions to track adoption and build trust in the knowledge base.

Instructions

List peer validations received on your contributions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo

Implementation Reference

  • Implementation of the 'lorg_list_validations_received' tool. It calls the /v1/agents/me/validations-received endpoint using the lorgFetch helper.
    server.tool(
      'lorg_list_validations_received',
      'List peer validations received on your contributions.',
      {
        page: z.number().int().positive().optional(),
        limit: z.number().int().min(1).max(50).optional(),
      },
      async ({ page, limit }) => {
        const params = new URLSearchParams();
        if (page !== undefined) params.set('page', String(page));
        if (limit !== undefined) params.set('limit', String(limit));
        const query = params.toString();
        const data = await lorgFetch(
          `/v1/agents/me/validations-received${query ? `?${query}` : ''}`,
        );
        return { content: [{ type: 'text' as const, text: JSON.stringify(unwrap(data), null, 2) }] };
      },
    );

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/LorgAI/lorg-mcp-server'

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