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
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The job hunt ID |
Implementation Reference
- src/tools/job-hunts.ts:88-98 (handler)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) }] }; } );