Skip to main content
Glama

Job Search

search_jobs
Read-only

Search for job listings by keyword, location, and filters. Returns job details, company info, and application links.

Use this tool when users want to find jobs, search employment opportunities, or explore job openings. DO NOT use for: applying to jobs, submitting applications, or making employment decisions.

LLM USAGE INSTRUCTIONS:

  • ALWAYS provide the keyword parameter (required)

  • When presenting results to users, include BOTH the job details URL (detailsPageUrl) AND the company page URL (companyPageUrl) for each job

  • Use location to find geographically relevant positions

  • Combine filters to refine searches (e.g., workplace_types=['Remote'] for remote work)

  • Use posted_date to find recent openings ('ONE'=1 day, 'THREE'=3 days, 'SEVEN'=7 days)

  • Default jobs_per_page is reasonable, increase for comprehensive searches

  • Use company_name to scope results to a specific employer

  • Use sort='datePosted' when the user wants the newest listings instead of the most relevant

  • Use facets to get aggregate counts (e.g., how many results are remote vs on-site) without paging through all results

  • After presenting results, do NOT automatically call get_job_details for every job returned. Wait for the user to indicate which specific job(s) they're interested in, then pass that job's guid to get_job_details.

IMPORTANT - AI DISCLOSURE REQUIREMENT: When presenting job search results to users, you MUST include an appropriate disclosure that these results were retrieved using AI assistance. Example disclosure language: "These job listings were found using AI-powered search. Please review all job details carefully and verify information directly with employers before applying."

This tool provides job listing data only. Final employment decisions should always involve human judgment and direct review of complete job postings.

Args: keyword: The job keyword or title to search for (required) location: Geographic location for the job search (city, state, country) radius: Search radius from the specified location (minimum 1, requires radius_unit) radius_unit: Unit for search radius. Options: 'mi', 'km' (requires radius) jobs_per_page: Number of jobs to return per page (1-100, defaults to 5) page_number: Page number for pagination (1-based, default is 1) sort: Sort order for results. Options: 'relevance', 'datePosted' (defaults to relevance) posted_date: Filter by posting date. Options: 'ONE' (1 day), 'THREE' (3 days), 'SEVEN' (7 days) workplace_types: Workplace arrangements. Options: 'Remote', 'On-Site', 'Hybrid' employment_types: Employment types. Options: 'FULLTIME', 'CONTRACTS', 'PARTTIME', 'THIRD_PARTY', 'INTERNSHIP' employer_types: Employer types. Options: 'Direct Hire', 'Recruiter', 'Other' willing_to_sponsor: Filter for employers willing to sponsor work authorization (boolean) easy_apply: Filter for jobs with easy application process (boolean) company_name: Filter by company name fields: Specific fields to include in response (optional, returns all exposed fields by default) facets: Facet dimensions to aggregate (optional). Options: 'employmentType', 'postedDate', 'workFromHomeAvailability', 'workplaceTypes', 'employerType', 'easyApply', 'isRemote', 'willingToSponsor'

Returns: JobSearchResult: Contains: - data: List of JobDisplayFields with job details including: * guid: The job's identifier to pass as job_id to get_job_details for the full description and skills list (NOT the id field, which is a different, internal identifier not accepted by get_job_details) * detailsPageUrl: Direct link to full job posting * companyPageUrl: Link to company profile page * title, summary, salary, location, employmentType, etc. - metadata: Search metadata with pagination info and facet results

Raises: Exception: If API call fails or input validation errors occur

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNo
facetsNo
fieldsNo
radiusNo
keywordYes
locationNo
easy_applyNo
page_numberNo
posted_dateNo
radius_unitNo
company_nameNo
jobs_per_pageNo
employer_typesNo
workplace_typesNo
employment_typesNo
willing_to_sponsorNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoArray of job listings matching the search criteria
metadataNoMetadata about the search results and pagination

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed17 schema fields changed
    • addedInput schema / properties / company_name
      Added value: +{
      +  "default": null,
      +  "type": "string"
      +}
    • addedInput schema / properties / facets
      Added value: +{
      +  "default": null,
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / properties / radius / type
      Previous value: -"number"New value: +"integer"
    • addedInput schema / properties / sort
      Added value: +{
      +  "default": null,
      +  "type": "string"
      +}
    • changedOutput schema / $defs / JobDisplayFields / description
      Previous value: -"Job listing information with all possible fields."New value: +"Job listing information with all facade-exposed fields.\n\nInternal atomic-service fields (jobId, positionId, companyLogoUrlOptimized,\njobMetadata, debug) exist upstream but are not exposed through the facade."
    • removedOutput schema / $defs / JobDisplayFields / properties / companyLogoUrlOptimized
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "URL to the optimized company logo"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / debug
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "additionalProperties": true,
      -      "type": "object"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Debug information (development only)"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / jobId
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Job ID from the source system"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / jobMetadata
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "additionalProperties": true,
      -      "type": "object"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Additional job metadata"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / positionId
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Position identifier"
      -}
    • removedOutput schema / $defs / JobSearchMeta
      Removed value: -{
      -  "description": "Metadata about the search results and pagination.",
      -  "properties": {
      -    "currentPage": {
      -      "description": "Current page number (1-based)",
      -      "minimum": 1,
      -      "type": "integer"
      -    },
      -    "facetQueryResults": {
      -      "anyOf": [
      -        {
      -          "items": {
      -            "$ref": "#/$defs/FacetQueryResult"
      -          },
      -          "type": "array"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Facet results for filtering options"
      -    },
      -    "includeRemote": {
      -      "anyOf": [
      -        {
      -          "type": "boolean"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Whether remote jobs are included in results"
      -    },
      -    "pageCount": {
      -      "description": "Total number of pages available",
      -      "minimum": 0,
      -      "type": "integer"
      -    },
      -    "pageSize": {
      -      "description": "Number of results per page",
      -      "minimum": 1,
      -      "type": "integer"
      -    },
      -    "recommendedSearches": {
      -      "anyOf": [
      -        {
      -          "additionalProperties": true,
      -          "type": "object"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Recommended related searches"
      -    },
      -    "searchId": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Unique identifier for this search"
      -    },
      -    "searchedLocation": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/SearchedLocation"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Information about the searched location"
      -    },
      -    "selectedFilters": {
      -      "anyOf": [
      -        {
      -          "items": {
      -            "$ref": "#/$defs/SelectedFilter"
      -          },
      -          "type": "array"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Currently applied filters"
      -    },
      -    "sortBy": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Current sort order"
      -    },
      -    "totalJobCount": {
      -      "anyOf": [
      -        {
      -          "type": "integer"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Total job count across all sources"
      -    },
      -    "totalResults": {
      -      "description": "Total number of jobs matching the search criteria",
      -      "minimum": 0,
      -      "type": "integer"
      -    }
      -  },
      -  "required": [
      -    "currentPage",
      -    "pageCount",
      -    "pageSize",
      -    "totalResults"
      -  ],
      -  "type": "object"
      -}
    • addedOutput schema / $defs / JobSearchMetadata
      Added value: +{
      +  "description": "Metadata about the search results and pagination.",
      +  "properties": {
      +    "facetQueryResults": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "$ref": "#/$defs/FacetQueryResult"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Facet results for filtering options"
      +    },
      +    "includeRemote": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Whether remote jobs are included in results"
      +    },
      +    "page": {
      +      "description": "Current page number (1-based)",
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "pageSize": {
      +      "description": "Number of results per page",
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "recommendedSearches": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": true,
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Recommended related searches"
      +    },
      +    "searchId": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Unique identifier for this search"
      +    },
      +    "searchedLocation": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/SearchedLocation"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Information about the searched location"
      +    },
      +    "selectedFilters": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "$ref": "#/$defs/SelectedFilter"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Currently applied filters"
      +    },
      +    "sortBy": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Current sort order"
      +    },
      +    "total": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Total number of jobs matching the search criteria"
      +    },
      +    "totalJobCount": {
      +      "anyOf": [
      +        {
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Total job count across all sources"
      +    },
      +    "totalPages": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Total number of pages available"
      +    }
      +  },
      +  "required": [
      +    "page",
      +    "pageSize"
      +  ],
      +  "type": "object"
      +}
    • removedOutput schema / $defs / PaginationLink
      Removed value: -{
      -  "description": "Pagination link.",
      -  "properties": {
      -    "href": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "URL for the pagination link"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / PaginationLinks
      Removed value: -{
      -  "description": "Pagination navigation links.",
      -  "properties": {
      -    "first": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to first page"
      -    },
      -    "last": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to last page"
      -    },
      -    "next": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to next page"
      -    },
      -    "prev": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to previous page"
      -    },
      -    "self": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to current page"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / properties / _links
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "$ref": "#/$defs/PaginationLinks"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Pagination navigation links"
      -}
    • removedOutput schema / properties / meta
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "$ref": "#/$defs/JobSearchMeta"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Metadata about the search results and pagination"
      -}
    • addedOutput schema / properties / metadata
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/JobSearchMetadata"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Metadata about the search results and pagination"
      +}
  2. Changed17 schema fields changed
    • removedInput schema / properties / company_name
      Removed value: -{
      -  "default": null,
      -  "type": "string"
      -}
    • removedInput schema / properties / facets
      Removed value: -{
      -  "default": null,
      -  "items": {
      -    "type": "string"
      -  },
      -  "type": "array"
      -}
    • changedInput schema / properties / radius / type
      Previous value: -"integer"New value: +"number"
    • removedInput schema / properties / sort
      Removed value: -{
      -  "default": null,
      -  "type": "string"
      -}
    • changedOutput schema / $defs / JobDisplayFields / description
      Previous value: -"Job listing information with all facade-exposed fields.\n\nInternal atomic-service fields (jobId, positionId, companyLogoUrlOptimized,\njobMetadata, debug) exist upstream but are not exposed through the facade."New value: +"Job listing information with all possible fields."
    • addedOutput schema / $defs / JobDisplayFields / properties / companyLogoUrlOptimized
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "URL to the optimized company logo"
      +}
    • addedOutput schema / $defs / JobDisplayFields / properties / debug
      Added value: +{
      +  "anyOf": [
      +    {
      +      "additionalProperties": true,
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Debug information (development only)"
      +}
    • addedOutput schema / $defs / JobDisplayFields / properties / jobId
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Job ID from the source system"
      +}
    • addedOutput schema / $defs / JobDisplayFields / properties / jobMetadata
      Added value: +{
      +  "anyOf": [
      +    {
      +      "additionalProperties": true,
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Additional job metadata"
      +}
    • addedOutput schema / $defs / JobDisplayFields / properties / positionId
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Position identifier"
      +}
    • addedOutput schema / $defs / JobSearchMeta
      Added value: +{
      +  "description": "Metadata about the search results and pagination.",
      +  "properties": {
      +    "currentPage": {
      +      "description": "Current page number (1-based)",
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "facetQueryResults": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "$ref": "#/$defs/FacetQueryResult"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Facet results for filtering options"
      +    },
      +    "includeRemote": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Whether remote jobs are included in results"
      +    },
      +    "pageCount": {
      +      "description": "Total number of pages available",
      +      "minimum": 0,
      +      "type": "integer"
      +    },
      +    "pageSize": {
      +      "description": "Number of results per page",
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "recommendedSearches": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": true,
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Recommended related searches"
      +    },
      +    "searchId": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Unique identifier for this search"
      +    },
      +    "searchedLocation": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/SearchedLocation"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Information about the searched location"
      +    },
      +    "selectedFilters": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "$ref": "#/$defs/SelectedFilter"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Currently applied filters"
      +    },
      +    "sortBy": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Current sort order"
      +    },
      +    "totalJobCount": {
      +      "anyOf": [
      +        {
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Total job count across all sources"
      +    },
      +    "totalResults": {
      +      "description": "Total number of jobs matching the search criteria",
      +      "minimum": 0,
      +      "type": "integer"
      +    }
      +  },
      +  "required": [
      +    "currentPage",
      +    "pageCount",
      +    "pageSize",
      +    "totalResults"
      +  ],
      +  "type": "object"
      +}
    • removedOutput schema / $defs / JobSearchMetadata
      Removed value: -{
      -  "description": "Metadata about the search results and pagination.",
      -  "properties": {
      -    "facetQueryResults": {
      -      "anyOf": [
      -        {
      -          "items": {
      -            "$ref": "#/$defs/FacetQueryResult"
      -          },
      -          "type": "array"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Facet results for filtering options"
      -    },
      -    "includeRemote": {
      -      "anyOf": [
      -        {
      -          "type": "boolean"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Whether remote jobs are included in results"
      -    },
      -    "page": {
      -      "description": "Current page number (1-based)",
      -      "minimum": 1,
      -      "type": "integer"
      -    },
      -    "pageSize": {
      -      "description": "Number of results per page",
      -      "minimum": 1,
      -      "type": "integer"
      -    },
      -    "recommendedSearches": {
      -      "anyOf": [
      -        {
      -          "additionalProperties": true,
      -          "type": "object"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Recommended related searches"
      -    },
      -    "searchId": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Unique identifier for this search"
      -    },
      -    "searchedLocation": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/SearchedLocation"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Information about the searched location"
      -    },
      -    "selectedFilters": {
      -      "anyOf": [
      -        {
      -          "items": {
      -            "$ref": "#/$defs/SelectedFilter"
      -          },
      -          "type": "array"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Currently applied filters"
      -    },
      -    "sortBy": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Current sort order"
      -    },
      -    "total": {
      -      "anyOf": [
      -        {
      -          "minimum": 0,
      -          "type": "integer"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Total number of jobs matching the search criteria"
      -    },
      -    "totalJobCount": {
      -      "anyOf": [
      -        {
      -          "type": "integer"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Total job count across all sources"
      -    },
      -    "totalPages": {
      -      "anyOf": [
      -        {
      -          "minimum": 0,
      -          "type": "integer"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Total number of pages available"
      -    }
      -  },
      -  "required": [
      -    "page",
      -    "pageSize"
      -  ],
      -  "type": "object"
      -}
    • addedOutput schema / $defs / PaginationLink
      Added value: +{
      +  "description": "Pagination link.",
      +  "properties": {
      +    "href": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "URL for the pagination link"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / PaginationLinks
      Added value: +{
      +  "description": "Pagination navigation links.",
      +  "properties": {
      +    "first": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/PaginationLink"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Link to first page"
      +    },
      +    "last": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/PaginationLink"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Link to last page"
      +    },
      +    "next": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/PaginationLink"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Link to next page"
      +    },
      +    "prev": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/PaginationLink"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Link to previous page"
      +    },
      +    "self": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/PaginationLink"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Link to current page"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / properties / _links
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/PaginationLinks"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Pagination navigation links"
      +}
    • addedOutput schema / properties / meta
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/JobSearchMeta"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Metadata about the search results and pagination"
      +}
    • removedOutput schema / properties / metadata
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "$ref": "#/$defs/JobSearchMetadata"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Metadata about the search results and pagination"
      -}
  3. Changed17 schema fields changed
    • addedInput schema / properties / company_name
      Added value: +{
      +  "default": null,
      +  "type": "string"
      +}
    • addedInput schema / properties / facets
      Added value: +{
      +  "default": null,
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / properties / radius / type
      Previous value: -"number"New value: +"integer"
    • addedInput schema / properties / sort
      Added value: +{
      +  "default": null,
      +  "type": "string"
      +}
    • changedOutput schema / $defs / JobDisplayFields / description
      Previous value: -"Job listing information with all possible fields."New value: +"Job listing information with all facade-exposed fields.\n\nInternal atomic-service fields (jobId, positionId, companyLogoUrlOptimized,\njobMetadata, debug) exist upstream but are not exposed through the facade."
    • removedOutput schema / $defs / JobDisplayFields / properties / companyLogoUrlOptimized
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "URL to the optimized company logo"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / debug
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "additionalProperties": true,
      -      "type": "object"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Debug information (development only)"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / jobId
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Job ID from the source system"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / jobMetadata
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "additionalProperties": true,
      -      "type": "object"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Additional job metadata"
      -}
    • removedOutput schema / $defs / JobDisplayFields / properties / positionId
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Position identifier"
      -}
    • removedOutput schema / $defs / JobSearchMeta
      Removed value: -{
      -  "description": "Metadata about the search results and pagination.",
      -  "properties": {
      -    "currentPage": {
      -      "description": "Current page number (1-based)",
      -      "minimum": 1,
      -      "type": "integer"
      -    },
      -    "facetQueryResults": {
      -      "anyOf": [
      -        {
      -          "items": {
      -            "$ref": "#/$defs/FacetQueryResult"
      -          },
      -          "type": "array"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Facet results for filtering options"
      -    },
      -    "includeRemote": {
      -      "anyOf": [
      -        {
      -          "type": "boolean"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Whether remote jobs are included in results"
      -    },
      -    "pageCount": {
      -      "description": "Total number of pages available",
      -      "minimum": 0,
      -      "type": "integer"
      -    },
      -    "pageSize": {
      -      "description": "Number of results per page",
      -      "minimum": 1,
      -      "type": "integer"
      -    },
      -    "recommendedSearches": {
      -      "anyOf": [
      -        {
      -          "additionalProperties": true,
      -          "type": "object"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Recommended related searches"
      -    },
      -    "searchId": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Unique identifier for this search"
      -    },
      -    "searchedLocation": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/SearchedLocation"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Information about the searched location"
      -    },
      -    "selectedFilters": {
      -      "anyOf": [
      -        {
      -          "items": {
      -            "$ref": "#/$defs/SelectedFilter"
      -          },
      -          "type": "array"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Currently applied filters"
      -    },
      -    "sortBy": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Current sort order"
      -    },
      -    "totalJobCount": {
      -      "anyOf": [
      -        {
      -          "type": "integer"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Total job count across all sources"
      -    },
      -    "totalResults": {
      -      "description": "Total number of jobs matching the search criteria",
      -      "minimum": 0,
      -      "type": "integer"
      -    }
      -  },
      -  "required": [
      -    "currentPage",
      -    "pageCount",
      -    "pageSize",
      -    "totalResults"
      -  ],
      -  "type": "object"
      -}
    • addedOutput schema / $defs / JobSearchMetadata
      Added value: +{
      +  "description": "Metadata about the search results and pagination.",
      +  "properties": {
      +    "facetQueryResults": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "$ref": "#/$defs/FacetQueryResult"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Facet results for filtering options"
      +    },
      +    "includeRemote": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Whether remote jobs are included in results"
      +    },
      +    "page": {
      +      "description": "Current page number (1-based)",
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "pageSize": {
      +      "description": "Number of results per page",
      +      "minimum": 1,
      +      "type": "integer"
      +    },
      +    "recommendedSearches": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": true,
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Recommended related searches"
      +    },
      +    "searchId": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Unique identifier for this search"
      +    },
      +    "searchedLocation": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/$defs/SearchedLocation"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Information about the searched location"
      +    },
      +    "selectedFilters": {
      +      "anyOf": [
      +        {
      +          "items": {
      +            "$ref": "#/$defs/SelectedFilter"
      +          },
      +          "type": "array"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Currently applied filters"
      +    },
      +    "sortBy": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Current sort order"
      +    },
      +    "total": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Total number of jobs matching the search criteria"
      +    },
      +    "totalJobCount": {
      +      "anyOf": [
      +        {
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Total job count across all sources"
      +    },
      +    "totalPages": {
      +      "anyOf": [
      +        {
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ],
      +      "default": null,
      +      "description": "Total number of pages available"
      +    }
      +  },
      +  "required": [
      +    "page",
      +    "pageSize"
      +  ],
      +  "type": "object"
      +}
    • removedOutput schema / $defs / PaginationLink
      Removed value: -{
      -  "description": "Pagination link.",
      -  "properties": {
      -    "href": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "URL for the pagination link"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / PaginationLinks
      Removed value: -{
      -  "description": "Pagination navigation links.",
      -  "properties": {
      -    "first": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to first page"
      -    },
      -    "last": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to last page"
      -    },
      -    "next": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to next page"
      -    },
      -    "prev": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to previous page"
      -    },
      -    "self": {
      -      "anyOf": [
      -        {
      -          "$ref": "#/$defs/PaginationLink"
      -        },
      -        {
      -          "type": "null"
      -        }
      -      ],
      -      "default": null,
      -      "description": "Link to current page"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / properties / _links
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "$ref": "#/$defs/PaginationLinks"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Pagination navigation links"
      -}
    • removedOutput schema / properties / meta
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "$ref": "#/$defs/JobSearchMeta"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Metadata about the search results and pagination"
      -}
    • addedOutput schema / properties / metadata
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/$defs/JobSearchMetadata"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Metadata about the search results and pagination"
      +}
  4. Changed78 schema fields changed
    • removedInput schema / properties / easy_apply / title
      Removed value: -"Easy Apply"
    • removedInput schema / properties / employer_types / title
      Removed value: -"Employer Types"
    • removedInput schema / properties / employment_types / title
      Removed value: -"Employment Types"
    • removedInput schema / properties / fields / title
      Removed value: -"Fields"
    • removedInput schema / properties / jobs_per_page / title
      Removed value: -"Jobs Per Page"
    • removedInput schema / properties / keyword / title
      Removed value: -"Keyword"
    • removedInput schema / properties / location / title
      Removed value: -"Location"
    • removedInput schema / properties / page_number / title
      Removed value: -"Page Number"
    • removedInput schema / properties / posted_date / title
      Removed value: -"Posted Date"
    • removedInput schema / properties / radius / title
      Removed value: -"Radius"
    • removedInput schema / properties / radius_unit / title
      Removed value: -"Radius Unit"
    • removedInput schema / properties / willing_to_sponsor / title
      Removed value: -"Willing To Sponsor"
    • removedInput schema / properties / workplace_types / title
      Removed value: -"Workplace Types"
    • removedOutput schema / $defs / FacetQueryResult / properties / displayName / title
      Removed value: -"Displayname"
    • removedOutput schema / $defs / FacetQueryResult / properties / facetName / title
      Removed value: -"Facetname"
    • removedOutput schema / $defs / FacetQueryResult / properties / facetResults / title
      Removed value: -"Facetresults"
    • removedOutput schema / $defs / FacetQueryResult / title
      Removed value: -"FacetQueryResult"
    • removedOutput schema / $defs / FacetResultItem / properties / count / title
      Removed value: -"Count"
    • removedOutput schema / $defs / FacetResultItem / properties / displayValue / title
      Removed value: -"Displayvalue"
    • removedOutput schema / $defs / FacetResultItem / properties / value / title
      Removed value: -"Value"
    • removedOutput schema / $defs / FacetResultItem / title
      Removed value: -"FacetResultItem"
    • removedOutput schema / $defs / JobDisplayFields / properties / clientBrandId / title
      Removed value: -"Clientbrandid"
    • removedOutput schema / $defs / JobDisplayFields / properties / companyLogoUrl / title
      Removed value: -"Companylogourl"
    • removedOutput schema / $defs / JobDisplayFields / properties / companyLogoUrlOptimized / title
      Removed value: -"Companylogourloptimized"
    • removedOutput schema / $defs / JobDisplayFields / properties / companyName / title
      Removed value: -"Companyname"
    • removedOutput schema / $defs / JobDisplayFields / properties / companyPageUrl / title
      Removed value: -"Companypageurl"
    • removedOutput schema / $defs / JobDisplayFields / properties / debug / title
      Removed value: -"Debug"
    • removedOutput schema / $defs / JobDisplayFields / properties / detailsPageUrl / title
      Removed value: -"Detailspageurl"
    • removedOutput schema / $defs / JobDisplayFields / properties / easyApply / title
      Removed value: -"Easyapply"
    • removedOutput schema / $defs / JobDisplayFields / properties / employerType / title
      Removed value: -"Employertype"
    • removedOutput schema / $defs / JobDisplayFields / properties / employmentType / title
      Removed value: -"Employmenttype"
    • removedOutput schema / $defs / JobDisplayFields / properties / guid / title
      Removed value: -"Guid"
    • removedOutput schema / $defs / JobDisplayFields / properties / id / title
      Removed value: -"Id"
    • removedOutput schema / $defs / JobDisplayFields / properties / isHighlighted / title
      Removed value: -"Ishighlighted"
    • removedOutput schema / $defs / JobDisplayFields / properties / isRemote / title
      Removed value: -"Isremote"
    • removedOutput schema / $defs / JobDisplayFields / properties / jobId / title
      Removed value: -"Jobid"
    • removedOutput schema / $defs / JobDisplayFields / properties / jobMetadata / title
      Removed value: -"Jobmetadata"
    • removedOutput schema / $defs / JobDisplayFields / properties / modifiedDate / title
      Removed value: -"Modifieddate"
    • removedOutput schema / $defs / JobDisplayFields / properties / positionId / title
      Removed value: -"Positionid"
    • removedOutput schema / $defs / JobDisplayFields / properties / postedDate / title
      Removed value: -"Posteddate"
    • removedOutput schema / $defs / JobDisplayFields / properties / salary / title
      Removed value: -"Salary"
    • removedOutput schema / $defs / JobDisplayFields / properties / score / title
      Removed value: -"Score"
    • removedOutput schema / $defs / JobDisplayFields / properties / summary / title
      Removed value: -"Summary"
    • removedOutput schema / $defs / JobDisplayFields / properties / title / title
      Removed value: -"Title"
    • removedOutput schema / $defs / JobDisplayFields / properties / willingToSponsor / title
      Removed value: -"Willingtosponsor"
    • removedOutput schema / $defs / JobDisplayFields / properties / workFromHomeAvailability / title
      Removed value: -"Workfromhomeavailability"
    • removedOutput schema / $defs / JobDisplayFields / properties / workplaceTypes / title
      Removed value: -"Workplacetypes"
    • removedOutput schema / $defs / JobDisplayFields / title
      Removed value: -"JobDisplayFields"
    • removedOutput schema / $defs / JobLocation / properties / displayName / title
      Removed value: -"Displayname"
    • removedOutput schema / $defs / JobLocation / title
      Removed value: -"JobLocation"
    • removedOutput schema / $defs / JobSearchMeta / properties / currentPage / title
      Removed value: -"Currentpage"
    • removedOutput schema / $defs / JobSearchMeta / properties / facetQueryResults / title
      Removed value: -"Facetqueryresults"
    • removedOutput schema / $defs / JobSearchMeta / properties / includeRemote / title
      Removed value: -"Includeremote"
    • removedOutput schema / $defs / JobSearchMeta / properties / pageCount / title
      Removed value: -"Pagecount"
    • removedOutput schema / $defs / JobSearchMeta / properties / pageSize / title
      Removed value: -"Pagesize"
    • removedOutput schema / $defs / JobSearchMeta / properties / recommendedSearches / title
      Removed value: -"Recommendedsearches"
    • removedOutput schema / $defs / JobSearchMeta / properties / searchId / title
      Removed value: -"Searchid"
    • removedOutput schema / $defs / JobSearchMeta / properties / selectedFilters / title
      Removed value: -"Selectedfilters"
    • removedOutput schema / $defs / JobSearchMeta / properties / sortBy / title
      Removed value: -"Sortby"
    • removedOutput schema / $defs / JobSearchMeta / properties / totalJobCount / title
      Removed value: -"Totaljobcount"
    • removedOutput schema / $defs / JobSearchMeta / properties / totalResults / title
      Removed value: -"Totalresults"
    • removedOutput schema / $defs / JobSearchMeta / title
      Removed value: -"JobSearchMeta"
    • removedOutput schema / $defs / PaginationLink / properties / href / title
      Removed value: -"Href"
    • removedOutput schema / $defs / PaginationLink / title
      Removed value: -"PaginationLink"
    • removedOutput schema / $defs / PaginationLinks / title
      Removed value: -"PaginationLinks"
    • removedOutput schema / $defs / SearchedLocation / properties / countryCode2 / title
      Removed value: -"Countrycode2"
    • removedOutput schema / $defs / SearchedLocation / properties / radius / title
      Removed value: -"Radius"
    • removedOutput schema / $defs / SearchedLocation / properties / radiusUnit / title
      Removed value: -"Radiusunit"
    • removedOutput schema / $defs / SearchedLocation / title
      Removed value: -"SearchedLocation"
    • removedOutput schema / $defs / SelectedFilter / properties / displayName / title
      Removed value: -"Displayname"
    • removedOutput schema / $defs / SelectedFilter / properties / filterName / title
      Removed value: -"Filtername"
    • removedOutput schema / $defs / SelectedFilter / properties / selectedItems / title
      Removed value: -"Selecteditems"
    • removedOutput schema / $defs / SelectedFilter / title
      Removed value: -"SelectedFilter"
    • removedOutput schema / $defs / SelectedFilterItem / properties / displayValue / title
      Removed value: -"Displayvalue"
    • removedOutput schema / $defs / SelectedFilterItem / properties / value / title
      Removed value: -"Value"
    • removedOutput schema / $defs / SelectedFilterItem / title
      Removed value: -"SelectedFilterItem"
    • removedOutput schema / properties / data / title
      Removed value: -"Data"
    • removedOutput schema / title
      Removed value: -"JobSearchResult"
  5. First observed

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true, but the description adds meaningful behavioral context: it returns listing data only, mandates an AI disclosure to users, and instructs agents to wait for user selection before fetching details. This goes beyond the annotations, though it omits potential rate limits or data freshness details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but well-organized with sections (LLM USAGE INSTRUCTIONS, Args, Returns, Raises). It front-loads the purpose and each sentence carries operational value, though some repetition in the usage instructions could be trimmed without loss.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with 16 parameters, it covers the search logic, return structure (JobSearchResult with data and metadata), the critical guid-vs-id caveat, pagination, facets, and error handling. With an output schema present, this is complete enough for an agent to use it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description's Args section thoroughly explains all 16 parameters, including allowed values, dependencies (radius/radius_unit), and default behaviors (e.g., posted_date: 'ONE'=1 day). This fully compensates for the schema's lack of descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description opens with 'Search for job listings by keyword, location, and filters' – a specific verb+resource that clearly identifies the tool's function. It also differentiates from siblings by explaining that search_jobs is for finding jobs while get_job_details is for retrieving details of a specific job (guid passed to it).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use the tool: 'when users want to find jobs, search employment opportunities, or explore job openings.' It also gives clear exclusions ('DO NOT use for: applying to jobs...') and provides cross-referenced guidance about not automatically calling get_job_details, effectively distinguishing it from the sibling tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources