Skip to main content
Glama

get_generated_resume

Retrieve a specific AI-generated resume with its download URL using the resume ID for job application purposes.

Instructions

Get details of a specific AI-generated resume including the download URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe generated resume ID

Implementation Reference

  • The MCP tool handler for 'get_generated_resume', which calls the client's 'getGeneratedResume' method and returns the resume details.
    server.tool(
      'get_generated_resume',
      'Get details of a specific AI-generated resume including the download URL.',
      {
        id: z.string().describe('The generated resume ID'),
      },
      async (args) => {
        const resume = await client.getGeneratedResume(args.id);
        return { content: [{ type: 'text' as const, text: JSON.stringify({ id: args.id, filename: resume.resumeFileName, downloadUrl: resume.url }, 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