Skip to main content
Glama

list_generated_resumes

View and filter AI-generated resumes tailored for specific job applications. Manage automatically created application documents by job ID or trigger type.

Instructions

List AI-generated custom resumes. These are resumes that were automatically tailored for specific job applications.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobApplicationIdNoFilter by job application ID
manualTriggerNoFilter by whether resume was manually triggered

Implementation Reference

  • The tool 'list_generated_resumes' is defined and implemented here using the `server.tool` MCP method. It maps the input arguments to a client call and formats the response.
    server.tool(
      'list_generated_resumes',
      'List AI-generated custom resumes. These are resumes that were automatically tailored for specific job applications.',
      {
        jobApplicationId: z.string().optional().describe('Filter by job application ID'),
        manualTrigger: z.boolean().optional().describe('Filter by whether resume was manually triggered'),
      },
      async (args) => {
        const result = await client.listGeneratedResumes({
          jobApplicationId: args.jobApplicationId,
          manualTrigger: args.manualTrigger,
        });
        const response = {
          count: result.resumes.length,
          generatedResumes: result.resumes.map(r => ({
            id: r._id,
            jobApplicationId: r.jobApplicationId,
            jobTitle: r.meta?.title,
            company: r.meta?.companyName,
            filename: r.fileName,
            status: r.status,
            aiRelevancyScore: r.aiRelevancyScore ? `${Math.round(r.aiRelevancyScore * 100)}%` : null,
            createdAt: r.dateCreated,
          })),
        };
        return { content: [{ type: 'text' as const, text: JSON.stringify(response, 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