Skip to main content
Glama

get_job

Retrieve comprehensive details for a specific job posting, including description, salary, skills, and company information, using the job listing ID.

Instructions

Get detailed information about a specific job listing/posting by its job listing ID (not application ID). Use this to view the full job posting details including description, salary, skills, and company info. For job application details, use get_application instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe job ID

Implementation Reference

  • The implementation of the 'get_job' tool, which takes a job ID as an argument and fetches detailed information from the API client.
    server.tool(
      'get_job',
      'Get detailed information about a specific job listing/posting by its job listing ID (not application ID). Use this to view the full job posting details including description, salary, skills, and company info. For job application details, use get_application instead.',
      {
        id: z.string().describe('The job ID'),
      },
      async (args) => {
        const job = await client.getJob(args.id);
        return { content: [{ type: 'text' as const, text: JSON.stringify(formatJob(job), 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