MCP server for Glassdoor: search job listings by keyword and location, read one posting in full with the employer rating and the salary figure with its provenance. 1,000 free credits every month.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/HasData/glassdoor-mcp{
"mcpServers": {
"glassdoor-mcp": {
"command": "node",
"args": ["/path/to/glassdoor-mcp/dist/index.js"]
}
}
}MCP Servers overview
# Glassdoor MCP Server
<!-- mcp-name: com.hasdata/glassdoor -->
A hosted Model Context Protocol (MCP) server that gives Claude, Cursor, Windsurf and any other MCP client two read-only Glassdoor tools. Search job listings by keyword and location, then read one posting in full with the employer rating, the salary figure and its provenance, both as structured JSON, with no Glassdoor partner account and nothing to host.
It reads public Glassdoor job pages that a signed-out visitor can see, on the US site and 22 regional ones.
**1,000 free credits every month, no card required**, which is 100 Glassdoor calls at the 10-credit rate.
```
https://mcp.hasdata.com/api/mcp?apis=glassdoor
```
[](https://glama.ai/mcp/servers/HasData/glassdoor-mcp)
[](https://github.com/HasData/glassdoor-mcp/actions/workflows/contract.yml)
[](https://mcp.hasdata.com/api/mcp?apis=glassdoor)
[](#tools)
[](https://www.npmjs.com/package/@hasdata/glassdoor-mcp)
[](https://pypi.org/project/hasdata-glassdoor-mcp/)
[](LICENSE)
## Contents
- [What you need](#what-you-need)
- [Quick start](#quick-start)
- [Example prompts](#example-prompts)
- [Tools](#tools)
- [Errors and failure paths](#errors-and-failure-paths)
- [Pricing, free tier and limits](#pricing-free-tier-and-limits)
- [Tool selection](#tool-selection)
- [How it compares](#how-it-compares)
- [FAQ](#faq)
- [HasData links](#hasdata-links)
- [Development](#development)
- [Contributing](#contributing)
- [License](#license)
## What you need
An MCP client and a HasData API key from the [dashboard](https://app.hasdata.com/sign-up?utm_source=github&utm_medium=syndication&utm_campaign=glassdoor-mcp), free to create with no card, and the free tier covers about 100 calls a month at the 10-credit rate. This is a remote server, so the simplest path is a URL and an `x-api-key` header, with no container to run. A client that only speaks stdio reaches it through a thin launcher, published as `@hasdata/glassdoor-mcp` on npm and `hasdata-glassdoor-mcp` on PyPI, shown below.
## Quick start
The server URL is the same for every client. We run it hands-on in Claude Code and Claude Desktop. The other blocks follow each client's own documented format for a remote server.
| Field | Value |
| :--- | :--- |
| URL | `https://mcp.hasdata.com/api/mcp?apis=glassdoor` |
| Transport | HTTP, streamable |
| Auth header | `x-api-key: HASDATA_API_KEY` |
Clients with OAuth support can add the same URL as a connector and sign in without putting a key in a config file.
<details>
<summary><b>Claude Code</b></summary>
```bash
claude mcp add --transport http glassdoor "https://mcp.hasdata.com/api/mcp?apis=glassdoor" \
--header "x-api-key: HASDATA_API_KEY"
```
</details>
<details>
<summary><b>Claude Desktop</b></summary>
Settings, then Connectors, then Add custom connector, then paste `https://mcp.hasdata.com/api/mcp?apis=glassdoor` and sign in.
For the config-file route, Claude Desktop loads only local (stdio) servers, so it reaches a remote server through a stdio launcher. The `@hasdata/glassdoor-mcp` package is that launcher, and it reads the key from the environment. Add this to `claude_desktop_config.json`:
```json
{
"mcpServers": {
"glassdoor": {
"command": "npx",
"args": ["-y", "@hasdata/glassdoor-mcp"],
"env": { "HASDATA_API_KEY": "YOUR_KEY" }
}
}
}
```
For Python instead of Node, swap the launcher for the PyPI package, which `uvx` runs without a manual install:
```json
{
"mcpServers": {
"glassdoor": {
"command": "uvx",
"args": ["hasdata-glassdoor-mcp"],
"env": { "HASDATA_API_KEY": "YOUR_KEY" }
}
}
}
```
</details>
<details>
<summary><b>Cursor</b></summary>
`~/.cursor/mcp.json` for every project, or `.cursor/mcp.json` for one:
```json
{
"mcpServers": {
"glassdoor": {
"url": "https://mcp.hasdata.com/api/mcp?apis=glassdoor",
"headers": { "x-api-key": "HASDATA_API_KEY" }
}
}
}
```
</details>
<details>
<summary><b>Windsurf</b></summary>
`~/.codeium/windsurf/mcp_config.json`. Windsurf calls the field `serverUrl`, not `url`:
```json
{
"mcpServers": {
"glassdoor": {
"serverUrl": "https://mcp.hasdata.com/api/mcp?apis=glassdoor",
"headers": { "x-api-key": "HASDATA_API_KEY" }
}
}
}
```
</details>
<details>
<summary><b>VS Code</b></summary>
`.vscode/mcp.json` in the workspace:
```json
{
"servers": {
"glassdoor": {
"type": "http",
"url": "https://mcp.hasdata.com/api/mcp?apis=glassdoor",
"headers": { "x-api-key": "HASDATA_API_KEY" }
}
}
}
```
</details>
## Example prompts
Each of these lands on one tool, or on two in sequence when the second needs the URL the first returns.
- Find data engineer roles in Austin, TX and show me only the ones where the employer stated the salary.
- What is the median posted salary for this role in Austin, and how many postings did that come from?
- Read this Glassdoor posting in full and list the required qualifications.
- Which companies hiring for this role have an employer rating above 4?
- Show me postings for this role added in the last week, sorted by recency.
- Compare posted salaries for this role on the UK and the German Glassdoor sites.
A prompt that names a role goes to the listing tool, and reading the full description takes a second call per posting. The listing already carries the salary, the employer rating and the skills, so a comparison across many roles needs one call rather than one per posting.
## Tools
Two tools, 10 credits per successful call.
### Get Glassdoor job listings
[`hasdata_glassdoor_listing_getJobListings`](https://docs.hasdata.com/apis/glassdoor/listing?utm_source=github&utm_medium=syndication&utm_campaign=glassdoor-mcp)
A page of postings for a role in a place, 30 to a page.
| Parameter | Type | Required | Notes |
| :--- | :--- | :--- | :--- |
| `keyword` | string | yes | The role to search for, such as `data engineer` |
| `location` | string | yes | Where to search, such as `Austin, TX` |
| `sort` | string | | `relevant` or `recent` |
| `domain` | string | | One of 22 regional Glassdoor sites |
| `nextPageToken` | string | | Cursor for the next page, taken from the previous response |
Returns `searchInformation` with `totalResults` and the Glassdoor URL behind the query, a `jobs` array, and `pagination`.
Each posting carries `title`, `id`, `url`, `location`, `ageInDays`, `sponsored`, a `skills` array, a `description` snippet, a `salary` object and an `employer` object with its own `rating` and `logoUrl`.
The `salary` object is the reason this tool is worth more than a job board feed. It reports `min`, `median`, `max`, `currency`, `period` and, decisively, `source`, which is either `EMPLOYER_PROVIDED` or `ESTIMATED`. The first is a figure the employer published, the second is Glassdoor's own model. In the sample below, 19 of 30 postings were employer-provided and 10 estimated.
```json
{
"title": "Data Engineer",
"id": 1010220057561,
"url": "https://www.glassdoor.com/job-listing/data-engineer-esc-region-xiii-JV_IC1139761_KO0,13_KE14,29.htm?jl=1010220057561",
"location": "Austin, TX",
"ageInDays": 36,
"sponsored": false,
"skills": ["Azure", "Customer service", "System design"],
"salary": {
"currency": "USD",
"period": "ANNUAL",
"min": 82572,
"median": 82572,
"max": 82572,
"source": "EMPLOYER_PROVIDED"
},
"employer": {
"id": 477452,
"name": "Education Service Center Region XIII",
"shortName": "ESC Region XIII",
"rating": 4.2,
"sponsored": false
}
}
```
### Get Glassdoor job details
[`hasdata_glassdoor_job_getJobDetails`](https://docs.hasdata.com/apis/glassdoor/job?utm_source=github&utm_medium=syndication&utm_campaign=glassdoor-mcp)
One posting in full, by its Glassdoor URL.
| Parameter | Type | Required | Notes |
| :--- | :--- | :--- | :--- |
| `url` | string | yes | The posting URL, as the listing tool returns it |
Returns a `job` object. On top of the title, salary and employer the listing already gave you, it adds the full `description` as plain text, the same text as `descriptionHtml`, a `requirements` object holding `educationRequirements` and an `experienceRequirements` array, an `address` object with coordinates, `datePosted`, and an `expired` flag.
```json
{
"title": "Data Engineer",
"employer": {
"name": "ESC Region XIII",
"url": "https://www.glassdoor.com/Overview/Working-at-ESC-Region-XIII-EI_IE477452.11,26.htm"
},
"address": {
"country": "United States",
"region": "Texas",
"city": "Austin, TX",
"latitude": 30.26694,
"longitude": -97.74278
},
"requirements": {
"educationRequirements": "Bachelor's degree",
"experienceRequirements": ["Azure", "Customer service", "System design", "Windows", "SQL", "AWS"]
},
"salary": {
"payCurrency": "USD",
"period": "ANNUAL",
"min": 82572,
"median": 82572,
"max": 82572,
"source": "EMPLOYER_PROVIDED"
},
"datePosted": "2026-09-03T00:00:00",
"ageInDays": 36,
"expired": false
}
```
## Errors and failure paths
Plan for these rather than assuming a happy path.
**`salary.source` decides whether the figure is a fact or a model output.** `EMPLOYER_PROVIDED` came from the posting. `ESTIMATED` is Glassdoor's own estimate for the role and market, and mixWhat people ask about glassdoor-mcp
What is HasData/glassdoor-mcp?
+
HasData/glassdoor-mcp is mcp servers for the Claude AI ecosystem. MCP server for Glassdoor: search job listings by keyword and location, read one posting in full with the employer rating and the salary figure with its provenance. 1,000 free credits every month. It has 0 GitHub stars and its last recorded update is dated 2026-09-10.
How do I install glassdoor-mcp?
+
You can install glassdoor-mcp by cloning the repository (https://github.com/HasData/glassdoor-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is HasData/glassdoor-mcp safe to use?
+
Our security agent has analyzed HasData/glassdoor-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains HasData/glassdoor-mcp?
+
HasData/glassdoor-mcp is maintained by HasData. The last recorded GitHub activity is dated 2026-09-10, with 0 open issues.
Are there alternatives to glassdoor-mcp?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy glassdoor-mcp to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/hasdata-glassdoor-mcp)<a href="https://claudewave.com/repo/hasdata-glassdoor-mcp"><img src="https://claudewave.com/api/badge/hasdata-glassdoor-mcp" alt="Featured on ClaudeWave: HasData/glassdoor-mcp" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!