@pullapi/glassdoor-scraper-mcp 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +114 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +56 -0
- package/package.json +54 -0
- package/server.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# Glassdoor Scraper MCP Server
|
|
2
|
+
|
|
3
|
+
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.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Search Companies** — Search Glassdoor for companies by name
|
|
8
|
+
- **Get Company** — Get Glassdoor company overview including ratings, CEO approval, and awards
|
|
9
|
+
- **Get Reviews** — Get employee reviews for a company on Glassdoor
|
|
10
|
+
- **Get Salaries** — Get salary data by job title for a company on Glassdoor
|
|
11
|
+
- **Get Jobs** — Get job listings at a company on Glassdoor
|
|
12
|
+
|
|
13
|
+
## Tools
|
|
14
|
+
|
|
15
|
+
### search_companies
|
|
16
|
+
|
|
17
|
+
Search Glassdoor for companies by name
|
|
18
|
+
|
|
19
|
+
**Parameters:**
|
|
20
|
+
|
|
21
|
+
| Name | Type | Required | Description |
|
|
22
|
+
|------|------|----------|-------------|
|
|
23
|
+
| `query` | string | Yes | Company name search query |
|
|
24
|
+
|
|
25
|
+
### get_company
|
|
26
|
+
|
|
27
|
+
Get Glassdoor company overview including ratings, CEO approval, and awards
|
|
28
|
+
|
|
29
|
+
**Parameters:**
|
|
30
|
+
|
|
31
|
+
| Name | Type | Required | Description |
|
|
32
|
+
|------|------|----------|-------------|
|
|
33
|
+
| `employer_id` | string | Yes | Glassdoor employer ID |
|
|
34
|
+
| `employer_name` | string | No | Employer name (for URL construction) |
|
|
35
|
+
|
|
36
|
+
### get_reviews
|
|
37
|
+
|
|
38
|
+
Get employee reviews for a company on Glassdoor
|
|
39
|
+
|
|
40
|
+
**Parameters:**
|
|
41
|
+
|
|
42
|
+
| Name | Type | Required | Description |
|
|
43
|
+
|------|------|----------|-------------|
|
|
44
|
+
| `employer_id` | string | Yes | Glassdoor employer ID |
|
|
45
|
+
| `employer_name` | string | No | Employer name (for URL construction) |
|
|
46
|
+
| `page` | number | No | Page number (default: 1) |
|
|
47
|
+
|
|
48
|
+
### get_salaries
|
|
49
|
+
|
|
50
|
+
Get salary data by job title for a company on Glassdoor
|
|
51
|
+
|
|
52
|
+
**Parameters:**
|
|
53
|
+
|
|
54
|
+
| Name | Type | Required | Description |
|
|
55
|
+
|------|------|----------|-------------|
|
|
56
|
+
| `employer_id` | string | Yes | Glassdoor employer ID |
|
|
57
|
+
| `employer_name` | string | No | Employer name (for URL construction) |
|
|
58
|
+
| `page` | number | No | Page number (default: 1) |
|
|
59
|
+
|
|
60
|
+
### get_jobs
|
|
61
|
+
|
|
62
|
+
Get job listings at a company on Glassdoor
|
|
63
|
+
|
|
64
|
+
**Parameters:**
|
|
65
|
+
|
|
66
|
+
| Name | Type | Required | Description |
|
|
67
|
+
|------|------|----------|-------------|
|
|
68
|
+
| `employer_id` | string | Yes | Glassdoor employer ID |
|
|
69
|
+
| `employer_name` | string | No | Employer name (for URL construction) |
|
|
70
|
+
| `page` | number | No | Page number (default: 1) |
|
|
71
|
+
|
|
72
|
+
## Configuration
|
|
73
|
+
|
|
74
|
+
Get your API key from [RapidAPI](https://rapidapi.com/pullapi/api).
|
|
75
|
+
|
|
76
|
+
## Usage with Claude Desktop
|
|
77
|
+
|
|
78
|
+
Add to your `claude_desktop_config.json`:
|
|
79
|
+
|
|
80
|
+
```json
|
|
81
|
+
{
|
|
82
|
+
"mcpServers": {
|
|
83
|
+
"glassdoor": {
|
|
84
|
+
"command": "npx",
|
|
85
|
+
"args": ["-y", "@pullapi/glassdoor-scraper-mcp"],
|
|
86
|
+
"env": {
|
|
87
|
+
"RAPIDAPI_KEY": "your-rapidapi-key"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Usage with Cursor
|
|
95
|
+
|
|
96
|
+
Add to your Cursor MCP settings (`.cursor/mcp.json`):
|
|
97
|
+
|
|
98
|
+
```json
|
|
99
|
+
{
|
|
100
|
+
"mcpServers": {
|
|
101
|
+
"glassdoor": {
|
|
102
|
+
"command": "npx",
|
|
103
|
+
"args": ["-y", "@pullapi/glassdoor-scraper-mcp"],
|
|
104
|
+
"env": {
|
|
105
|
+
"RAPIDAPI_KEY": "your-rapidapi-key"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## License
|
|
113
|
+
|
|
114
|
+
MIT
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
const mcp_core_1 = require("@pullapi/mcp-core");
|
|
5
|
+
const tools = [
|
|
6
|
+
{
|
|
7
|
+
name: "search_companies",
|
|
8
|
+
description: "Search Glassdoor for companies by name",
|
|
9
|
+
parameters: {
|
|
10
|
+
query: { type: "string", description: "Company name search query", required: true },
|
|
11
|
+
},
|
|
12
|
+
endpoint: "/glassdoor/search",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: "get_company",
|
|
16
|
+
description: "Get Glassdoor company overview including ratings, CEO approval, and awards",
|
|
17
|
+
parameters: {
|
|
18
|
+
employer_id: { type: "string", description: "Glassdoor employer ID", required: true },
|
|
19
|
+
employer_name: { type: "string", description: "Employer name (for URL construction)" },
|
|
20
|
+
},
|
|
21
|
+
endpoint: "/glassdoor/company",
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
name: "get_reviews",
|
|
25
|
+
description: "Get employee reviews for a company on Glassdoor",
|
|
26
|
+
parameters: {
|
|
27
|
+
employer_id: { type: "string", description: "Glassdoor employer ID", required: true },
|
|
28
|
+
employer_name: { type: "string", description: "Employer name (for URL construction)" },
|
|
29
|
+
page: { type: "number", description: "Page number", default: 1 },
|
|
30
|
+
},
|
|
31
|
+
endpoint: "/glassdoor/reviews",
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
name: "get_salaries",
|
|
35
|
+
description: "Get salary data by job title for a company on Glassdoor",
|
|
36
|
+
parameters: {
|
|
37
|
+
employer_id: { type: "string", description: "Glassdoor employer ID", required: true },
|
|
38
|
+
employer_name: { type: "string", description: "Employer name (for URL construction)" },
|
|
39
|
+
page: { type: "number", description: "Page number", default: 1 },
|
|
40
|
+
},
|
|
41
|
+
endpoint: "/glassdoor/salaries",
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: "get_jobs",
|
|
45
|
+
description: "Get job listings at a company on Glassdoor",
|
|
46
|
+
parameters: {
|
|
47
|
+
employer_id: { type: "string", description: "Glassdoor employer ID", required: true },
|
|
48
|
+
employer_name: { type: "string", description: "Employer name (for URL construction)" },
|
|
49
|
+
page: { type: "number", description: "Page number", default: 1 },
|
|
50
|
+
},
|
|
51
|
+
endpoint: "/glassdoor/jobs",
|
|
52
|
+
},
|
|
53
|
+
];
|
|
54
|
+
(0, mcp_core_1.createServer)("pullapi-glassdoor", tools, {
|
|
55
|
+
rapidapiHost: "pullapi-glassdoor.p.rapidapi.com",
|
|
56
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pullapi/glassdoor-scraper-mcp",
|
|
3
|
+
"mcpName": "com.pullapi/glassdoor",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Glassdoor MCP server — company reviews, salaries, jobs & employer ratings. For Claude, Cursor & AI agents.",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"server.json",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
13
|
+
"bin": {
|
|
14
|
+
"pullapi-glassdoor-scraper-mcp": "dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsc",
|
|
18
|
+
"dev": "tsc --watch"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"mcp",
|
|
22
|
+
"mcp-server",
|
|
23
|
+
"model-context-protocol",
|
|
24
|
+
"scraper",
|
|
25
|
+
"claude",
|
|
26
|
+
"cursor",
|
|
27
|
+
"ai-agent",
|
|
28
|
+
"glassdoor",
|
|
29
|
+
"glassdoor-api",
|
|
30
|
+
"glassdoor-scraper",
|
|
31
|
+
"company-reviews",
|
|
32
|
+
"salaries",
|
|
33
|
+
"salary-data",
|
|
34
|
+
"jobs",
|
|
35
|
+
"employer-ratings",
|
|
36
|
+
"workplace"
|
|
37
|
+
],
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@pullapi/mcp-core": "*"
|
|
40
|
+
},
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/basitmakine/pullapi.git",
|
|
51
|
+
"directory": "mcp/packages/glassdoor"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/basitmakine/pullapi/tree/master/mcp/packages/glassdoor#readme"
|
|
54
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "com.pullapi/glassdoor",
|
|
4
|
+
"title": "Glassdoor Scraper",
|
|
5
|
+
"description": "Company reviews, salaries, and job listings",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"websiteUrl": "https://pullapi.com",
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://github.com/basitmakine/pullapi",
|
|
10
|
+
"source": "github",
|
|
11
|
+
"subfolder": "mcp/packages/glassdoor"
|
|
12
|
+
},
|
|
13
|
+
"packages": [
|
|
14
|
+
{
|
|
15
|
+
"registryType": "npm",
|
|
16
|
+
"identifier": "@pullapi/glassdoor-scraper-mcp",
|
|
17
|
+
"version": "1.0.0",
|
|
18
|
+
"transport": { "type": "stdio" },
|
|
19
|
+
"environmentVariables": [
|
|
20
|
+
{
|
|
21
|
+
"name": "RAPIDAPI_KEY",
|
|
22
|
+
"description": "Your RapidAPI key from rapidapi.com",
|
|
23
|
+
"isRequired": true,
|
|
24
|
+
"isSecret": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|