@pullapi/indeed-scraper-mcp
v1.0.0
Published
Indeed MCP server — job search, job details & company profiles. For Claude, Cursor & AI agents.
Maintainers
Readme
Indeed Scraper MCP Server
An MCP server that provides real-time Indeed data — search job listings with filters, get full job posting details, and view company profiles with ratings — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Search Jobs — Search Indeed for job listings by keywords and location
- Get Job — Get full job posting details from Indeed
- Get Company — Get Indeed company profile including ratings, reviews, and company info
Tools
search_jobs
Search Indeed for job listings by keywords and location
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| query | string | Yes | Job search keywords |
| location | string | No | Job location (city, state) |
| job_type | string | No | Job type filter (fulltime, parttime, contract, internship, temporary) |
| page | number | No | Page number (default: 1) |
| sort | string | No | Sort order (relevance or date) |
get_job
Get full job posting details from Indeed
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| job_key | string | Yes | Indeed job key/ID |
get_company
Get Indeed company profile including ratings, reviews, and company info
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| name | string | Yes | Company name |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"indeed": {
"command": "npx",
"args": ["-y", "@pullapi/indeed-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"indeed": {
"command": "npx",
"args": ["-y", "@pullapi/indeed-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
