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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/jobs.ts:82-90 (handler)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) }] }; } );