@pullapi/indeed-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 +89 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +37 -0
- package/package.json +54 -0
- package/server.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Indeed Scraper MCP Server
|
|
2
|
+
|
|
3
|
+
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.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Search Jobs** — Search Indeed for job listings by keywords and location
|
|
8
|
+
- **Get Job** — Get full job posting details from Indeed
|
|
9
|
+
- **Get Company** — Get Indeed company profile including ratings, reviews, and company info
|
|
10
|
+
|
|
11
|
+
## Tools
|
|
12
|
+
|
|
13
|
+
### search_jobs
|
|
14
|
+
|
|
15
|
+
Search Indeed for job listings by keywords and location
|
|
16
|
+
|
|
17
|
+
**Parameters:**
|
|
18
|
+
|
|
19
|
+
| Name | Type | Required | Description |
|
|
20
|
+
|------|------|----------|-------------|
|
|
21
|
+
| `query` | string | Yes | Job search keywords |
|
|
22
|
+
| `location` | string | No | Job location (city, state) |
|
|
23
|
+
| `job_type` | string | No | Job type filter (fulltime, parttime, contract, internship, temporary) |
|
|
24
|
+
| `page` | number | No | Page number (default: 1) |
|
|
25
|
+
| `sort` | string | No | Sort order (relevance or date) |
|
|
26
|
+
|
|
27
|
+
### get_job
|
|
28
|
+
|
|
29
|
+
Get full job posting details from Indeed
|
|
30
|
+
|
|
31
|
+
**Parameters:**
|
|
32
|
+
|
|
33
|
+
| Name | Type | Required | Description |
|
|
34
|
+
|------|------|----------|-------------|
|
|
35
|
+
| `job_key` | string | Yes | Indeed job key/ID |
|
|
36
|
+
|
|
37
|
+
### get_company
|
|
38
|
+
|
|
39
|
+
Get Indeed company profile including ratings, reviews, and company info
|
|
40
|
+
|
|
41
|
+
**Parameters:**
|
|
42
|
+
|
|
43
|
+
| Name | Type | Required | Description |
|
|
44
|
+
|------|------|----------|-------------|
|
|
45
|
+
| `name` | string | Yes | Company name |
|
|
46
|
+
|
|
47
|
+
## Configuration
|
|
48
|
+
|
|
49
|
+
Get your API key from [RapidAPI](https://rapidapi.com/pullapi/api).
|
|
50
|
+
|
|
51
|
+
## Usage with Claude Desktop
|
|
52
|
+
|
|
53
|
+
Add to your `claude_desktop_config.json`:
|
|
54
|
+
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"mcpServers": {
|
|
58
|
+
"indeed": {
|
|
59
|
+
"command": "npx",
|
|
60
|
+
"args": ["-y", "@pullapi/indeed-scraper-mcp"],
|
|
61
|
+
"env": {
|
|
62
|
+
"RAPIDAPI_KEY": "your-rapidapi-key"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Usage with Cursor
|
|
70
|
+
|
|
71
|
+
Add to your Cursor MCP settings (`.cursor/mcp.json`):
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"mcpServers": {
|
|
76
|
+
"indeed": {
|
|
77
|
+
"command": "npx",
|
|
78
|
+
"args": ["-y", "@pullapi/indeed-scraper-mcp"],
|
|
79
|
+
"env": {
|
|
80
|
+
"RAPIDAPI_KEY": "your-rapidapi-key"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## License
|
|
88
|
+
|
|
89
|
+
MIT
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
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_jobs",
|
|
8
|
+
description: "Search Indeed for job listings by keywords and location",
|
|
9
|
+
parameters: {
|
|
10
|
+
query: { type: "string", description: "Job search keywords", required: true },
|
|
11
|
+
location: { type: "string", description: "Job location (city, state)" },
|
|
12
|
+
job_type: { type: "string", description: "Job type filter (fulltime, parttime, contract, internship, temporary)" },
|
|
13
|
+
page: { type: "number", description: "Page number", default: 1 },
|
|
14
|
+
sort: { type: "string", description: "Sort order (relevance or date)" },
|
|
15
|
+
},
|
|
16
|
+
endpoint: "/indeed/search",
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: "get_job",
|
|
20
|
+
description: "Get full job posting details from Indeed",
|
|
21
|
+
parameters: {
|
|
22
|
+
job_key: { type: "string", description: "Indeed job key/ID", required: true },
|
|
23
|
+
},
|
|
24
|
+
endpoint: "/indeed/job",
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: "get_company",
|
|
28
|
+
description: "Get Indeed company profile including ratings, reviews, and company info",
|
|
29
|
+
parameters: {
|
|
30
|
+
name: { type: "string", description: "Company name", required: true },
|
|
31
|
+
},
|
|
32
|
+
endpoint: "/indeed/company",
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
(0, mcp_core_1.createServer)("pullapi-indeed", tools, {
|
|
36
|
+
rapidapiHost: "pullapi-indeed.p.rapidapi.com",
|
|
37
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pullapi/indeed-scraper-mcp",
|
|
3
|
+
"mcpName": "com.pullapi/indeed",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Indeed MCP server — job search, job details & company profiles. 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-indeed-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
|
+
"indeed",
|
|
29
|
+
"indeed-api",
|
|
30
|
+
"indeed-scraper",
|
|
31
|
+
"jobs",
|
|
32
|
+
"job-search",
|
|
33
|
+
"employment",
|
|
34
|
+
"hiring",
|
|
35
|
+
"career",
|
|
36
|
+
"job-listings"
|
|
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/indeed"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/basitmakine/pullapi/tree/master/mcp/packages/indeed#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/indeed",
|
|
4
|
+
"title": "Indeed Scraper",
|
|
5
|
+
"description": "Job search, job details, and company profiles",
|
|
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/indeed"
|
|
12
|
+
},
|
|
13
|
+
"packages": [
|
|
14
|
+
{
|
|
15
|
+
"registryType": "npm",
|
|
16
|
+
"identifier": "@pullapi/indeed-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
|
+
}
|