Skip to main content
Glama

get_job_recruiters

Find recruiters associated with a specific job to get contact information like email and LinkedIn profiles for networking or follow-up.

Instructions

Get recruiters who posted or are associated with a specific job. Returns contact info including email and LinkedIn.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobIdYesThe job ID to find recruiters for

Implementation Reference

  • The handler for the get_job_recruiters tool which calls the JobGPTApiClient to fetch recruiters.
    async (args) => {
      const result = await client.getJobRecruiters(args.jobId);
      return { content: [{ type: 'text' as const, text: JSON.stringify({ recruiters: (result.contacts || []).map(formatContact) }, null, 2) }] };
    }
  • Input schema for the get_job_recruiters tool.
    {
      jobId: z.string().describe('The job ID to find recruiters for'),
    },
  • Registration of the get_job_recruiters tool using the MCP server instance.
    server.tool(
      'get_job_recruiters',
      'Get recruiters who posted or are associated with a specific job. Returns contact info including email and LinkedIn.',
      {
        jobId: z.string().describe('The job ID to find recruiters for'),
      },
      async (args) => {
        const result = await client.getJobRecruiters(args.jobId);
        return { content: [{ type: 'text' as const, text: JSON.stringify({ recruiters: (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