Skip to main content
Glama

list_job_hunts

Retrieve saved job searches and view current credits balance to manage your job application tracking efficiently.

Instructions

List your saved job hunts (job searches). Also returns your current credits balance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default: 1)
limitNoNumber of results per page (default: 20, max: 50)

Implementation Reference

  • The implementation of the `list_job_hunts` MCP tool, which calls the `client.listJobHunts` API method and returns the list of job hunts along with credit information.
    server.tool(
      'list_job_hunts',
      'List your saved job hunts (job searches). Also returns your current credits balance.',
      {
        page: z.number().optional().describe('Page number (default: 1)'),
        limit: z.number().optional().describe('Number of results per page (default: 20, max: 50)'),
      },
      async (args) => {
        const result = await client.listJobHunts(args.page || 1, args.limit || 20);
        const response = {
          count: result.jobHunts.length,
          jobHunts: result.jobHunts.map(formatJobHunt),
          credits: result.autoApplyQuota,
          creditsRemaining: result.autoApplyQuotaRemaining,
        };
        return { content: [{ type: 'text' as const, text: JSON.stringify(response, 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