Skip to main content
Glama

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
NameRequiredDescriptionDefault
jobIdYesThe job ID to add to applications
jobHuntIdYesThe job hunt ID to add this job to

Implementation Reference

  • 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) }] };
      }
    );

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