Skip to main content
Glama

upload-job-text

Upload job description text to parse and extract structured job data for AI-powered recruitment workflows.

Instructions

Upload a job description as plain text. Returns parsed job data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesJob description text
sourceNoSource URL or identifier for the job posting

Implementation Reference

  • The handler function for the upload-job-text tool.
    async (params) => {
      try {
        const result = await client.upload.jobText({
          text: params.text,
          source: params.source,
        });
        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 };
      }
    },
  • The input schema for the upload-job-text tool using zod.
    {
      text: z.string().describe("Job description text"),
      source: z.string().optional().describe("Source URL or identifier for the job posting"),
    },
  • The registration of the upload-job-text tool within the McpServer instance.
    server.tool(
      "upload-job-text",
      "Upload a job description as plain text. Returns parsed job data.",

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/ebenezer-isaac/llmconveyors-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server