Skip to main content
Glama

get_application_referrers

Identify potential referrers at a company for a specific job application to help secure employee referrals.

Instructions

Find potential referrers for a job application. Returns people at the company who might refer you.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
applicationIdYesThe job application ID
limitNoMaximum number of referrers to return (default: 2, max: 2)

Implementation Reference

  • The handler function that executes the `get_application_referrers` tool, which calls the `client.getApplicationReferrers` method.
    async (args) => {
      const result = await client.getApplicationReferrers(args.applicationId, Math.min(args.limit || 2, 2));
      return { content: [{ type: 'text' as const, text: JSON.stringify({ referrers: (result.contacts || []).map(formatContact) }, null, 2) }] };
    }
  • Registration of the `get_application_referrers` tool within the MCP server using `server.tool`.
    server.tool(
      'get_application_referrers',
      'Find potential referrers for a job application. Returns people at the company who might refer you.',
      {
        applicationId: z.string().describe('The job application ID'),
        limit: z.number().optional().describe('Maximum number of referrers to return (default: 2, max: 2)'),
      },
      async (args) => {
        const result = await client.getApplicationReferrers(args.applicationId, Math.min(args.limit || 2, 2));
        return { content: [{ type: 'text' as const, text: JSON.stringify({ referrers: (result.contacts || []).map(formatContact) }, 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/6figr-com/job-gpt-mcp-server'

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