delete_resume
Remove an alternate resume from your JobGPT profile to manage your application materials. This action does not affect your primary resume.
Instructions
Delete an uploaded resume from your profile. Note: You cannot delete your primary resume, only alternate resumes.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The resume ID (URI) to delete |
Implementation Reference
- src/tools/resume.ts:55-58 (handler)The handler logic for the `delete_resume` tool, which calls the `client.deleteResume` method.
async (args) => { await client.deleteResume(args.id); return { content: [{ type: 'text' as const, text: JSON.stringify({ success: true, message: 'Resume deleted successfully', id: args.id }, null, 2) }] }; } - src/tools/resume.ts:49-54 (registration)Registration of the `delete_resume` tool in `registerResumeTools`.
server.tool( 'delete_resume', 'Delete an uploaded resume from your profile. Note: You cannot delete your primary resume, only alternate resumes.', { id: z.string().describe('The resume ID (URI) to delete'), },