Skip to main content
Glama

Server Details

Dice MCP: Search for tech jobs on Dice.com

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Uptime
98.8% over 39 days
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.8/5.0

Scored across 3 tools

Disambiguation5/5

Each tool targets a distinct resource and action: search_jobs discovers job listings, get_job_details returns the full description and skills for a specific job, and get_company retrieves company details for a job. There is no overlap in purpose, and descriptions explicitly clarify when to use each tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: search_jobs, get_job_details, get_company. The verbs are semantically appropriate (search for discovery, get for retrieval) and the pattern is uniform across the set.

Tool Count5/5

Three tools is a well-scoped, focused set for a read-only job search MCP. Each tool earns its place in the search → details → company flow, and the count falls comfortably within the typical 3-15 range.

Completeness4/5

The core user journey is covered: searching for jobs, viewing full job details, and looking up company information. Minor gaps exist (e.g., no company search or application submission tools), but these are explicitly outside the stated purpose, so the surface is adequate for the domain.

Available Tools

3 tools
get_companyGet CompanyA
Read-only
Inspect

Retrieve the name and description of the company behind a job, by job ID.

Use this tool when users want more detail about a company than search_jobs/get_job_details return (e.g. after finding a job and wanting to know more about the company that posted it). DO NOT use for: searching/discovering companies or jobs by keyword (use search_jobs instead).

LLM USAGE INSTRUCTIONS:

  • The typical flow is: search_jobs to find jobs -> user picks one -> offer to look up the company -> if the user agrees, call this tool with that same job_id (the same guid used for get_job_details; no separate lookup step is needed first).

  • Do not call this automatically right after get_job_details; ask the user first unless they already explicitly asked for company details.

  • Not every company has published an employer branding profile, and some profiles are marked not visible by the company. When that happens this tool does NOT raise — it returns a Company with message set and empty name/desc. Relay that message to the user (e.g. "Looks like that company hasn't published a public profile.") rather than treating it as an error.

Args: job_id: The unique identifier of the job whose company to look up (required). This must be the job's guid field from a search_jobs result, NOT its id field — id is a different, internal identifier that this tool does not accept.

Returns: Company: Contains: - name: The company name (empty if message is set) - desc: The company description (empty if message is set) - message: Set instead of name/desc when there is no visible company profile to show; None when name/desc are populated

Raises: Exception: If the job is not found, an API call itself fails (network error, non-200 response, GraphQL errors), or input validation errors occur

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
descNoThe company description
nameNoThe company name
messageNoSet instead of name/desc when there is no visible company profile to show (e.g. the company hasn't published one, or has marked it not visible). None when name/desc are populated.

TDQS

A4.9/5.0
Behavior5/5

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

Discloses that the tool does not raise exceptions for missing company profiles but returns a Company with a message, and explains that job_id must be guid not id, adding context beyond annotations which only mark readOnlyHint and destructiveHint.

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?

Well-structured with clear sections, but slightly verbose due to extensive LLM instructions and edge cases. Could be more concise while preserving essential details.

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?

Covers all aspects: parameter, return type, error handling, edge case of missing profile, and alignment with typical workflow, despite having only 1 parameter and no schema descriptions.

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?

The schema has 0% coverage, but the description fully explains the job_id parameter, specifying it must be the job's guid field, not its id, and that it is required, adding crucial semantic info beyond the schema.

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?

The description clearly states the tool retrieves the company name and description by job ID, distinguishing it from siblings search_jobs and get_job_details which return job listings or details without company info.

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 guides when to use (after finding a job, when user wants company detail) and when not (searching/discovering), provides a typical flow, and includes LLM usage instructions with cautions about auto-calling.

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

get_job_detailsGet Job DetailsA
Read-only
Inspect

Retrieve a job's full description and associated skills by job ID.

Use this tool when users want more detail about a specific job than search_jobs returns (e.g. after finding a job via search_jobs and wanting its full description and skills list). DO NOT use for: searching/discovering jobs by keyword (use search_jobs instead).

LLM USAGE INSTRUCTIONS:

  • Only call this after the user has picked out a specific job from search_jobs results (or otherwise supplied a job's guid directly) — do not call it speculatively for every search result.

  • After returning job details, do NOT automatically call get_company. Instead, offer to look up the company (e.g. "Want me to pull up more info on the company?") and only call get_company, passing this same job_id, if the user says yes.

Args: job_id: The unique identifier of the job to retrieve (required). This must be the job's guid field from a search_jobs result, NOT its id field — id is a different, internal identifier that this tool does not accept.

Returns: JobDetails: Contains: - description: The full job description - skills: List of Skill objects associated with the job

Raises: Exception: If the API call fails, the job is not found, or input validation errors occur

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
skillsNoSkills associated with the job
descriptionNoThe job description

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 and destructiveHint=false. The description adds that job_id must be the guid (not id) and that exceptions are raised for API failure, job not found, or input validation errors—adding value beyond annotations.

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 well-structured with sections (Args, Returns, Raises) and front-loads the main purpose. However, there is some redundancy (e.g., first two paragraphs both describe when to use), slightly reducing conciseness.

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?

Given the simple single-parameter tool with an output schema, the description covers all necessary context: parameter semantics, return structure, error conditions, and usage guidelines. No gaps remain.

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 coverage is 0%, but the description thoroughly explains job_id: it is required, must be the guid field from search_jobs, and not the id field. This adds essential semantics beyond the schema.

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?

The description clearly states 'Retrieve a job's full description and associated skills by job ID', which is a specific verb+resource. It also distinguishes from siblings by contrasting with search_jobs and mentioning get_company usage.

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?

Provides explicit when-to-use ('after the user has picked out a specific job from search_jobs results') and when-not-to-use ('DO NOT use for: searching/discovering jobs by keyword'). Also gives specific LLM instructions about not automatically calling get_company.

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

search_jobsJob SearchA
Read-only
Inspect

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

ParametersJSON 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

ParametersJSON Schema
NameRequiredDescription
dataNoArray of job listings matching the search criteria
metadataNoMetadata about the search results and pagination

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.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • Changedget_company5 fields changed
      • removedInput schema / properties / company_id
        Removed value: -{
        -  "default": null,
        -  "type": "string"
        -}
      • removedInput schema / properties / group_id
        Removed value: -{
        -  "default": null,
        -  "type": "integer"
        -}
      • addedInput schema / properties / job_id
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / required
        Added value: +[
        +  "job_id"
        +]
      • addedOutput schema / properties / message
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Set instead of name/desc when there is no visible company profile to show (e.g. the company hasn't published one, or has marked it not visible). None when name/desc are populated."
        +}
    • Changedget_job_details1 field changed
      • removedOutput schema / properties / companyId
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "The company's identifier, to pass as company_id to get_company"
        -}
  2. 4 tool updates
    • Removedget_candidate
    • Addedget_company
    • Addedget_job_details
    • Changedsearch_jobs17 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"
        +}
  3. 4 tool updates
    • Addedget_candidate
    • Removedget_company
    • Removedget_job_details
    • Changedsearch_jobs17 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"
        -}
  4. 3 tool updates
    • Addedget_company
    • Addedget_job_details
    • Changedsearch_jobs17 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"
        +}
  5. 1 tool update
    • Changedsearch_jobs78 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"
  6. 1 tool update
    • First observedsearch_jobs

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables searching and retrieving tech job listings in the US and Canada from MCP-compatible apps, with tools for job search, full job details, and category browsing.
    MIT
  • F
    license
    A
    quality
    B
    maintenance
    Enables searching and retrieving job listings from multiple platforms through MCP.
    2
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server that exposes job search data from multiple boards, enabling clients to query and manage job listings via natural language.
    7
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources