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
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The generated resume ID |
Implementation Reference
- src/tools/resume.ts:90-100 (handler)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) }] }; } );