@pullapi/glassdoor-scraper-mcp
v1.0.0
Published
Glassdoor MCP server — company reviews, salaries, jobs & employer ratings. For Claude, Cursor & AI agents.
Maintainers
Readme
Glassdoor Scraper MCP Server
An MCP server that provides real-time Glassdoor data — company overviews, employee reviews, salary data, and job listings — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Search Companies — Search Glassdoor for companies by name
- Get Company — Get Glassdoor company overview including ratings, CEO approval, and awards
- Get Reviews — Get employee reviews for a company on Glassdoor
- Get Salaries — Get salary data by job title for a company on Glassdoor
- Get Jobs — Get job listings at a company on Glassdoor
Tools
search_companies
Search Glassdoor for companies by name
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| query | string | Yes | Company name search query |
get_company
Get Glassdoor company overview including ratings, CEO approval, and awards
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| employer_id | string | Yes | Glassdoor employer ID |
| employer_name | string | No | Employer name (for URL construction) |
get_reviews
Get employee reviews for a company on Glassdoor
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| employer_id | string | Yes | Glassdoor employer ID |
| employer_name | string | No | Employer name (for URL construction) |
| page | number | No | Page number (default: 1) |
get_salaries
Get salary data by job title for a company on Glassdoor
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| employer_id | string | Yes | Glassdoor employer ID |
| employer_name | string | No | Employer name (for URL construction) |
| page | number | No | Page number (default: 1) |
get_jobs
Get job listings at a company on Glassdoor
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| employer_id | string | Yes | Glassdoor employer ID |
| employer_name | string | No | Employer name (for URL construction) |
| page | number | No | Page number (default: 1) |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"glassdoor": {
"command": "npx",
"args": ["-y", "@pullapi/glassdoor-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"glassdoor": {
"command": "npx",
"args": ["-y", "@pullapi/glassdoor-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
