Skip to main content
Glama

get_job_hunt

Retrieve detailed information about a specific job application using its unique ID to track progress and manage your job search effectively.

Instructions

Get details of a specific job hunt by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe job hunt ID

Implementation Reference

  • The MCP tool registration and handler implementation for "get_job_hunt". It uses the JobGPTApiClient to fetch the job hunt details and formats the output.
    server.tool(
      'get_job_hunt',
      'Get details of a specific job hunt by ID',
      {
        id: z.string().describe('The job hunt ID'),
      },
      async (args) => {
        const jobHunt = await client.getJobHunt(args.id);
        return { content: [{ type: 'text' as const, text: JSON.stringify(formatJobHunt(jobHunt), 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