# Indeed MCP Server
A hosted Model Context Protocol (MCP) server that gives Claude, Cursor, Windsurf and any other MCP client two read-only Indeed tools. Search job listings by keyword and location, and read a single posting in full, all as structured JSON, with no Indeed developer account and no partner approval.
It reads public job postings that a signed-out visitor can see.
**1,000 free credits every month, no card required**, which is 200 Indeed calls.
```
https://mcp.hasdata.com/api/mcp?apis=indeed
```
[](https://glama.ai/mcp/servers/HasData/indeed-mcp)
[](https://github.com/HasData/indeed-mcp/actions/workflows/contract.yml)
[](https://modelcontextprotocol.io)
[](#tools)
[](https://www.npmjs.com/package/@hasdata/indeed-mcp)
[](https://pypi.org/project/hasdata-indeed-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=indeed-mcp), free to create with no card, and the free tier covers about 200 calls a month at the 5-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 and no Indeed developer account anywhere in the flow. A client that only speaks stdio reaches it through a thin launcher, published as `@hasdata/indeed-mcp` on npm and `hasdata-indeed-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=indeed` |
| 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.
Claude Code
```bash
claude mcp add --transport http indeed "https://mcp.hasdata.com/api/mcp?apis=indeed" \
--header "x-api-key: HASDATA_API_KEY"
```
Claude Desktop
Settings, then Connectors, then Add custom connector, then paste `https://mcp.hasdata.com/api/mcp?apis=indeed` 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/indeed-mcp` package is that launcher, and it reads the key from the environment. Add this to `claude_desktop_config.json`:
```json
{
"mcpServers": {
"indeed": {
"command": "npx",
"args": ["-y", "@hasdata/indeed-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": {
"indeed": {
"command": "uvx",
"args": ["hasdata-indeed-mcp"],
"env": { "HASDATA_API_KEY": "YOUR_KEY" }
}
}
}
```
Cursor
`~/.cursor/mcp.json` for every project, or `.cursor/mcp.json` for one:
```json
{
"mcpServers": {
"indeed": {
"url": "https://mcp.hasdata.com/api/mcp?apis=indeed",
"headers": { "x-api-key": "HASDATA_API_KEY" }
}
}
}
```
Windsurf
`~/.codeium/windsurf/mcp_config.json`. Windsurf calls the field `serverUrl`, not `url`:
```json
{
"mcpServers": {
"indeed": {
"serverUrl": "https://mcp.hasdata.com/api/mcp?apis=indeed",
"headers": { "x-api-key": "HASDATA_API_KEY" }
}
}
}
```
VS Code
`.vscode/mcp.json` in the workspace:
```json
{
"servers": {
"indeed": {
"type": "http",
"url": "https://mcp.hasdata.com/api/mcp?apis=indeed",
"headers": { "x-api-key": "HASDATA_API_KEY" }
}
}
}
```
Overview
We are seeking a Python Developer...
" } ``` ## Errors and failure paths Your client almost never sees an HTTP error code from a tool call. The MCP layer answers 200 and puts the failure inside the result, with `isError` set to `true` and the reason as text. The agent reads a message where you might expect a status line. **A wrong key surfaces as tool output, not as a failed connection.** `tools/list` accepts any non-empty key and returns both tools, so the client completes its handshake and shows green. The first tool call then comes back with `isError: true` and the text `HasData API error: 401 Unauthorized`. Watch for that string, because nothing earlier in the flow reports the problem. **A missing key is the one real HTTP error.** Authorization runs before any tool, and the connection itself fails with 401. CORS headers are present, and a browser client reads the status and not an opaque network failure. **An argument that breaks a tool's schema is rejected before it becomes a scrape.** The server answers with `isError: true` and the text `MCP error -32602: Input validation error`, naming the offending field. Nothing is fetched and nothing is charged. **A search that matches nothing returns a successful result with an empty `jobs` array**, not an error. A keyword and location combination with no openings still comes back with `requestMetadata.status` set to `ok`. Test for the array length before you iterate. **A posting that has been taken down returns 400** with `requestMetadata.status` set to `error`. Indeed expires listings quickly, so a URL from an old search can be gone. Results that carry data also carry a `requestMetadata.id` worth quoting in support. ## Pricing, free tier and limits Each Indeed tool costs **5 credits per successful call**. Response size does not change the price. A listing page with fifty jobs costs the same as one with two. The free tier is **1,000 credits every month with no card**, which is 200 Indeed calls. It renews with the billing cycle, so a low-volume agent runs on the free tier indefinitely. Paid plans start at **$49 a month** for 200,000 credits, which is 40,000 calls. The unit price falls with volume, from **$1.23 per 1,000 calls** on the entry plan to **$0.50** on Business, **$0.42** on Growth and **$0.37** on the largest [high-volume plans](https://hasdata.com/prices?utm_source=github&utm_medium=syndication&utm_campaign=indeed-mcp). Your plan also sets concurrency. The free tier allows 1 request at a time, Startup 15, Business 30, Growth 50, and the high-volume plans run from 200 to 1,500. Handle the overflow case defensively in anything unattended. A request that comes back non-200 is not billed. A successful call that finds nothing is still a call. ## Tool selection The `apis` query parameter decides which tools your agent sees. Fewer tools means less context spent on tool definitions, and fewer chances for the model to reach for the wrong one. ``` ?apis=indeed the two tools in this repo ?apis=indeed,glassdoor add Glassdoor jobs ?apis=indeed,google_serp add Google search ``` The parameter takes provider names like `indeed` and individual API names like `indeed_listing`. Misspelled names are ignored. If every name is wrong the request fails with 400, and the body lists both what it did not recognise and every valid value. Drop the parameter and the same endpoint exposes all 57 HasData tools. ## How it compares Indeed retired its public Publisher and Job Search APIs, and programmatic access now runs through approved partnerships and ATS integrations rather than a self-serve key. For reading public listings and postings across arbitrary searches, there is no open official route. | | Official Indeed access | This server | | :--- | :--- | :--- | | Access | Partner or ATS approval | One key and one URL | | Scope | Whatever the partnership grants | Any public search or posting | | Setup | Business review | None | | Output | Depends on the integration | Structured JSON, salary pre-parsed | | Writes | Application flows for approved partners | Read-only, public data only | **What this server does not do.** No application submission, no employer dashboard, no candidate data, no private postings. It reads what a signed-out visitor can see. ## FAQ ### Is there an official Indeed MCP server? Indeed does not publish one. This one is maintained by HasData and reads public pages, which is why it needs no Indeed developer account. ### What is an Indeed MCP server? A server that exposes Indeed job data as tools an AI client can call. The client sends a tool call over the Model Context Protocol, the server fetches the data and returns structured JSON, and the model works with the result. This one exposes two tools and runs remotely. ### Do I need an Indeed API key or partner account? No. The only credential is your HasData key. There is no Publisher account to apply for, because the tools read public Indeed pages. ### How do I page through more than one screen of results? Pass the `start` offset to the listing tool as a number, not a URL. The response returns `pagination.nextPage`, whose own `start` value is the offset for the next page, so read that number and pass it back rather than feeding the URL in. ### Why is a salary sometimes missing? Because the posting does not state one. The `salary` object is present only when Indeed shows a figure. Read it defensively. ### Can I use this together with other HasData APIs? Yes. The `apis` parameter takes a list, and `?apis=indeed,glassdoor` gives your agent Indeed plus Glassdoor. [Drop the parameter](#tool-selection) and you get everything. ### Compliance and personal data HasData accesses publicly available data only. A platform's terms may restrict automated access, and you are responsible for your own compliance. Where the data you collect includes personal information, make sure you have a lawful basis for it under GDPR, CCPA or the equivalent rules in your jurisdiction. ## HasData links | | | | :--- | :--- | | Product page and request builder | [Indeed Scraper API](https://hasdata.com/apis/indeed-api?utm_source=github&utm_medium=syndication&utm_campaign=indeed-mcp) | | Server documentation | [MCP server docs](https://docs.hasdata.com/mcp-server?utm_source=github&utm_medium=syndication&utm_campaign=indeed-mcp) | | All 57 tools in one server | [HasData/hasdata-mcp](https://github.com/HasData/hasdata-mcp) | | Client walkthroughs | [MCP clients and integrations](https://hasdata.com/integrations/mcp?utm_source=github&utm_medium=syndication&utm_campaign=indeed-mcp) | | Everything else we scrape | [Indeed Scraper API and 54 more](https://hasdata.com/apis/?utm_source=github&utm_medium=syndication&utm_campaign=indeed-mcp) | | Plans and credit costs | [Plans and credit costs](https://hasdata.com/prices?utm_source=github&utm_medium=syndication&utm_campaign=indeed-mcp) | | Keys and usage | [HasData dashboard](https://app.hasdata.com?utm_source=github&utm_medium=syndication&utm_campaign=indeed-mcp) | | Node launcher on npm | [@hasdata/indeed-mcp](https://www.npmjs.com/package/@hasdata/indeed-mcp) | | Python launcher on PyPI | [hasdata-indeed-mcp](https://pypi.org/project/hasdata-indeed-mcp/) | ## Development This repository is configuration and documentation for a remote server. There is no build step and nothing to containerize. The tests in `test/` assert the tool contract, the part that can break without a commit here. They check that `?apis=indeed` returns exactly two tools, that every tool still declares its required parameters, that no name changed, and that the key in use is actually accepted. That last check calls a tool for real and costs 5 credits, which is the price of a canary that can fail for the right reason. ```bash # macOS and Linux HASDATA_API_KEY=your_key_here npm test # Windows PowerShell $env:HASDATA_API_KEY="your_key_here"; npm test ``` The same suite runs in CI on every push and once a week on a schedule, because the upstream tool list can change without anyone touching this repository. A failure means the tool list moved, the key stopped working, or the endpoint was unreachable, and the assertion message says which. ## Contributing Corrections to the tool tables and the response samples are the most useful contribution, because those are the parts that drift. Include the call you made and the response you got. Pull requests from forks run the suite without a key, and the live checks skip instead of going red. ## License MIT. See [LICENSE](LICENSE).