-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.59 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "jobgpt-mcp-server",
"version": "1.3.0",
"description": "MCP server for job search automation, auto apply, resume generation, application tracking, and recruiter outreach",
"mcpName": "io.github.6figr-com/jobgpt-mcp-server",
"type": "module",
"main": "dist/stdio.js",
"bin": {
"jobgpt-mcp-server": "./dist/stdio.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/stdio.js",
"dev:local": "tsx src/stdio.ts",
"dev:worker": "wrangler dev",
"deploy": "wrangler deploy",
"watch": "tsc -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"jobgpt",
"job-search",
"job-search-automation",
"job-hunting",
"job-application",
"auto-apply",
"job-automation",
"resume",
"resume-builder",
"resume-generator",
"recruiter",
"career",
"salary",
"application-tracking",
"job-tracker",
"outreach",
"ai",
"claude",
"anthropic",
"cursor",
"windsurf",
"cline"
],
"author": "6figr.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/6figr-com/jobgpt-mcp-server"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"wrangler": "^4.69.0"
},
"files": [
"dist/**/*",
"README.md"
]
}