Skip to main content
Glama

get_resume

Retrieve details and download URL for a specific uploaded resume to access its content and information.

Instructions

Get details of a specific uploaded resume including download URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe resume ID (URI)
includeRawTxtNoInclude raw text content of the resume (default: false)

Implementation Reference

  • The handler function for the 'get_resume' MCP tool, which fetches resume details via the API client and formats the result.
    server.tool(
      'get_resume',
      'Get details of a specific uploaded resume including download URL.',
      {
        id: z.string().describe('The resume ID (URI)'),
        includeRawTxt: z.boolean().optional().describe('Include raw text content of the resume (default: false)'),
      },
      async (args) => {
        const resume = await client.getResume(args.id, args.includeRawTxt);
        const result = {
          id: args.id,
          filename: resume.fileName,
          downloadUrl: resume.url,
          ...(resume.rawTxt && { rawTxt: resume.rawTxt }),
        };
        return { content: [{ type: 'text' as const, text: JSON.stringify(result, 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