master-resume-list
Retrieve all master resume objects from the LLM Conveyors platform for job hunting, B2B sales, and ATS scoring workflows.
Instructions
List all master resumes. Returns an array of master resume objects.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/resume.ts:139-152 (handler)The MCP tool "master-resume-list" is registered here. The handler calls `client.resume.listMasters()` and returns the results.
server.tool( "master-resume-list", "List all master resumes. Returns an array of master resume objects.", {}, async () => { try { const result = await client.resume.listMasters(); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } catch (err) { const message = err instanceof Error ? err.message : String(err); return { content: [{ type: "text", text: `Error: ${message}` }], isError: true }; } }, );