job-market-mcp-server
Server Details
Indeed listings + Glassdoor reviews + H1B salary data for career copilots.
- Status
- Healthy
- Uptime
- 100.0% over 37 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2024-11-05
- URL
TDQS
Scored across 3 tools
Each tool targets a distinct aspect of the job market: company reviews, salary data, and job listings. There is no overlap, so an agent can easily select the right tool based on the user's intent.
The names are readable but follow mixed conventions: 'company_reviews' and 'salary_search' are noun phrases, while 'search_jobs' is a verb_noun structure. This inconsistency is minor and does not hinder understanding, but it deviates from a consistent verb_noun pattern.
Three tools is a reasonable, focused set for a job market server covering core queries: reviews, salary, and job search. It feels appropriately scoped, though it is on the smaller side and could benefit from one or two additional utilities.
The tools cover the primary job market data sources: job listings, company reviews, and salary information. There are no obvious dead ends, though additional tools like company profile details or job application tracking would enhance completeness, but they are not essential.
Available Tools
3 toolscompany_reviewsARead-onlyInspect
Get Glassdoor reviews for a company. Returns ratings, pros, cons, salary data. Args: company: Company name (e.g. 'Google') max_results: Max reviews (default 20)
| Name | Required | Description | Default |
|---|---|---|---|
| company | Yes | ||
| max_results | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds useful return-content details (ratings, pros, cons, salary data) and the max_results default, but does not disclose potential rate limits, pagination behavior, or dependency on live external data. Thus, it adds some value beyond annotations but falls short of rich behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: a single-sentence overview followed by an Args block with clear parameter explanations. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description must convey what to expect from the call. It does list the key return fields (ratings, pros, cons, salary data) and parameter behavior. It does not mention edge cases like unrecognized company names or empty results, but for a simple read-only tool with two parameters, this is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries the full burden of explaining parameters. It does so effectively: 'company' is explained with an example, and 'max_results' states its default and meaning ('Max reviews'). This fully compensates for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Get Glassdoor reviews for a company.' It specifies the resource (Glassdoor reviews) and lists the return types (ratings, pros, cons, salary data). This distinguishes it from sibling tools like salary_search and search_jobs, which focus on different data types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool (whenever Glassdoor reviews are needed) but does not explicitly mention alternatives or exclusions. While the sibling tools are visible in the environment, the description itself does not address when not to use this tool, leaving this dimension slightly below 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
salary_searchARead-onlyInspect
Search H1B visa salary data for a job title. Returns employer, salary, location. Args: job_title: Job title (e.g. 'Data Scientist') location: City or state (optional)
| Name | Required | Description | Default |
|---|---|---|---|
| location | No | ||
| job_title | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, so the agent knows this is a safe read operation. The description adds the return fields (employer, salary, location) and the arg list, but does not disclose deeper behavioral traits like data source limitations, pagination, or precision. This is consistent with annotations, so no contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: a one-sentence purpose, a one-line return summary, and a compact Args list. Every sentence earns its place, and the most important information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, has no output schema, and the description explains what it returns (employer, salary, location). It also specifies parameter optionality. Some minor gaps remain (e.g., result count, data source specifics), but given the low complexity and good annotations, this is nearly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does: job_title is explained with an example ('Data Scientist') and location is described as 'City or state (optional)'. This adds meaning beyond the raw schema, though it could give more examples or format constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches H1B visa salary data with a specific verb ('Search') and resource ('H1B visa salary data'), and explicitly lists the return fields (employer, salary, location). This distinguishes it from sibling tools like company_reviews and search_jobs, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (when you need salary data for a job title) and provides examples for job_title and location. However, it does not explicitly mention when not to use it or name alternative tools, so it stops short of a full 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_jobsARead-onlyInspect
Search Indeed for job listings. Returns titles, companies, salaries, descriptions. Args: query: Job title or keywords (e.g. 'software engineer') location: City or state (optional, e.g. 'New York') max_results: Max results (default 20)
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| location | No | ||
| max_results | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, reducing the burden. The description adds value by specifying the return fields (titles, companies, salaries, descriptions) and mention of 'Indeed' as an external source. It does not cover pagination or rate limits, but the annotations cover safety, so the additional context justifies a solid score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, with a clear first sentence stating the purpose and a structured Args block listing parameters. Every sentence adds value, with no filler or redundancy. The format is easy to scan and understand.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite being a simple tool with no output schema, the description covers purpose, parameters, and return values. The context signals show only 3 parameters and 1 required, which the description explains well. For such a tool, this is a complete and self-contained description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has no descriptions for parameters (0% coverage), so the description carries the full burden. It provides meaningful examples and defaults: query as 'Job title or keywords (e.g. 'software engineer')', location as optional 'City or state', and max_results with default 20. This fully compensates for the schema's lack of detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Search Indeed for job listings' with a specific verb and resource. It distinguishes from sibling tools by focusing on job listings, even though it also returns salaries, which is a secondary feature. The explicit return fields further clarify its purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for searching jobs but does not explicitly state when to prefer this over the alternative tools (company_reviews, salary_search). The overlap in returning salaries could cause confusion, but the primary focus on job listings gives some implicit guidance. No explicit exclusions or alternatives are mentioned.
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.
3 tool updates
- First observed
company_reviews - First observed
salary_search - First observed
search_jobs
Related MCP Connectors
H1B visa salary disclosures + compensation benchmarks — real numbers, not estimates.
Aggregated India job-market data: 9 job boards, LinkedIn sourcing, AmbitionBox employer snapshots.
US H-1B visa sponsorship, LCA wages & top sponsors by role — recruiting/talent data
Glassdoor job listings and full postings with company ratings and salary estimates, as JSON.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceProvides US H-1B visa sponsorship, LCA wages, and top sponsors by role for recruiting and talent data.5 npmMIT
- AlicenseNot gradedqualityDmaintenanceEnables searching and analyzing H-1B visa sponsoring companies using U.S. Department of Labor data. Supports filtering by job role, location, and salary with natural language queries to find direct employers and export results.16MIT
- AlicenseAqualityAmaintenanceLive tech-hiring intelligence for AI agents. Search 130K+ open jobs collected daily from ~500 tech companies' own career sites â plus company hiring profiles, tech stacks, salary benchmarks, and skill trends. Five tools work with no account.3193 npmMIT
- AlicenseNot gradedqualityBmaintenanceAI Job search over 3.5M+ live US jobs2MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.