job-market-mcp-server
Server Details
Indeed listings + Glassdoor reviews + H1B salary data for career copilots.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: company_reviews for Glassdoor feedback, salary_search for H1B salary data, and search_jobs for Indeed listings. No overlap in functionality.
Two tools use noun_verb pattern (company_reviews, salary_search) while one uses verb_noun (search_jobs). This minor inconsistency is noticeable but still readable and predictable.
Three tools is on the lower end but appropriate for a focused job market information server. Each tool covers a distinct aspect without fragmentation or redundancy.
The set covers three key job market data types: reviews, salary, and listings. Minor gaps like missing company profiles or application tracking are acceptable given the read-only scope.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint. Description adds specific return fields (ratings, pros, cons, salary), providing useful behavioral context beyond what annotations convey.
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?
Two sentences plus parameter list, front-loaded with purpose. No wasted words, highly efficient.
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?
No output schema, but description states what is returned. However, it lacks detail on review structure (e.g., fields, pagination). Adequate for basic usage but could be more 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 coverage is 0%, so description carries full burden. It explains 'company' with an example and 'max_results' with default value, adding meaning to both parameters.
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?
Clearly states it retrieves Glassdoor reviews for a company and lists specific return data (ratings, pros, cons, salary). Distinct from sibling tools (salary_search, search_jobs) which focus on salaries and jobs respectively.
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?
Describes primary use case (getting reviews) but does not explicitly mention when not to use or suggest alternatives. Still, the context implies it's for reviews, distinguishing it from siblings.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true and openWorldHint=true. Description adds minimal behavioral context (return fields only). It does not disclose aspects like data recency, pagination, or limitations.
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?
Description is short (two sentences plus Args block) and front-loads the purpose. It is concise but could be more structured with clear sections.
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?
For a simple 2-parameter tool with no output schema, the description covers the main purpose and parameters. However, it lacks details about result format (list, pagination) and any prerequisites, which would improve completeness.
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 fill the gap. It provides meaningful examples for job_title ('Data Scientist') and clarifies location as optional ('City or state'). This adds value beyond the schema's type and default information.
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?
Description clearly states the action ('Search'), the resource ('H1B visa salary data'), and the output ('Returns employer, salary, location'). It distinguishes itself from siblings (company_reviews, search_jobs) by focusing on salary data.
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?
Usage is implied (find salary data for a job title), but there is no explicit guidance on when to use versus alternatives or when not to use. No comparisons to siblings are provided.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint and openWorldHint, which the description aligns with by describing a read-only search operation. The description adds value by detailing return fields and providing argument examples, beyond what annotations convey.
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 (3 lines) with no wasted words. It front-loads the purpose, then lists arguments with examples. Every sentence is efficient and informative.
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?
Given the tool's complexity (3 params, no output schema), the description adequately covers the purpose, parameters, and return fields. It could mention pagination or result count, but it is sufficiently complete for effective use.
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%, but the description fully compensates by explaining each parameter with defaults and examples (e.g., query: 'software engineer', location: 'New York', max_results: default 20). It adds meaning beyond the plain schema properties.
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 'Search Indeed for job listings' with a specific verb and resource. It lists the return fields (titles, companies, salaries, descriptions), distinguishing it from sibling tools like company_reviews and salary_search.
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 by providing parameter examples and return fields. While it does not explicitly contrast with siblings, the context of sibling names makes differentiation clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!