add_job_to_applications
Save and track jobs found during searches by adding them to your application tracking list for organized job hunting.
Instructions
Add a job from search results to your applications. Use this when a user wants to save/track a job they found.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jobId | Yes | The job ID to add to applications | |
| jobHuntId | Yes | The job hunt ID to add this job to |
Implementation Reference
- src/tools/applications.ts:101-112 (handler)The 'add_job_to_applications' tool implementation and registration, which calls the JobGPTApiClient to add a job to a specific job hunt.
server.tool( 'add_job_to_applications', 'Add a job from search results to your applications. Use this when a user wants to save/track a job they found.', { jobId: z.string().describe('The job ID to add to applications'), jobHuntId: z.string().describe('The job hunt ID to add this job to'), }, async (args) => { const result = await client.addJobToApplications(args.jobId, args.jobHuntId); return { content: [{ type: 'text' as const, text: JSON.stringify(result, null, 2) }] }; } );