Skip to main content
Glama

apply_to_job

Automatically fill and submit job application forms using a specified resume or primary resume to apply for positions.

Instructions

Trigger auto-apply for a job application. This will automatically fill and submit the job application form. You can optionally specify a specific resume to use for this application.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe application ID to auto-apply for
resumeUriNoOptional: The URI of a specific resume to use for this application. Get this from list_resumes or upload_resume. If not provided, the primary resume will be used.

Implementation Reference

  • The handler function for the 'apply_to_job' tool, which calls `client.autoApply`.
    async (args) => {
      await client.autoApply(args.id, args.resumeUri);
      return {
        content: [{
          type: 'text' as const,
          text: JSON.stringify({
            message: 'Auto-apply triggered successfully. The application will be submitted shortly.',
            applicationId: args.id,
            resumeUri: args.resumeUri || 'primary resume',
          }, null, 2),
        }],
      };
    }
  • Input schema for the 'apply_to_job' tool.
    {
      id: z.string().describe('The application ID to auto-apply for'),
      resumeUri: z.string().optional().describe('Optional: The URI of a specific resume to use for this application. Get this from list_resumes or upload_resume. If not provided, the primary resume will be used.'),
    },
  • Registration of the 'apply_to_job' tool.
    server.tool(
      'apply_to_job',
      'Trigger auto-apply for a job application. This will automatically fill and submit the job application form. You can optionally specify a specific resume to use for this application.',

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