Skip to main content
Glama

get_industries

Retrieve valid company industry values to filter job searches, create job hunts, or update job hunts in the JobGPT MCP Server.

Instructions

Get the list of valid company industries. Use these values for the "industries" filter in search_jobs, create_job_hunt, or update_job_hunt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The 'get_industries' tool handler defined in src/tools/jobs.ts using the McpServer. It calls client.getIndustries() and returns the industry list as a JSON string.
    server.tool(
      'get_industries',
      'Get the list of valid company industries. Use these values for the "industries" filter in search_jobs, create_job_hunt, or update_job_hunt.',
      {},
      async () => {
        const industries = await client.getIndustries();
        return { content: [{ type: 'text' as const, text: JSON.stringify({ count: industries.length, industries }, 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