@juicedresume/mcp 0.2.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 +55 -0
- package/dist/index.js +3472 -0
- package/package.json +56 -0
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# @juicedresume/mcp
|
|
2
|
+
|
|
3
|
+
Stdio [Model Context Protocol](https://modelcontextprotocol.io) server for [JuicedResume](https://juicedresume.com) — score, tailor, and edit your resume from any MCP client (Claude Code, Claude Desktop, Cursor, Zed).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @juicedresume/mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or use `npx` directly in your MCP config — no install needed.
|
|
12
|
+
|
|
13
|
+
## Use in Claude Code
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
claude mcp add --transport stdio juicedresume -- npx -y @juicedresume/mcp
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Then `/mcp` inside Claude Code → enable `juicedresume`.
|
|
20
|
+
|
|
21
|
+
## Use in Claude Desktop / other clients
|
|
22
|
+
|
|
23
|
+
Add to your MCP server config:
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"juicedresume": {
|
|
29
|
+
"command": "npx",
|
|
30
|
+
"args": ["-y", "@juicedresume/mcp"]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Tools
|
|
37
|
+
|
|
38
|
+
| Category | Tools |
|
|
39
|
+
|---|---|
|
|
40
|
+
| Resumes | `list_resumes`, `get_resume`, `create_resume`, `delete_resume`, `duplicate_resume` |
|
|
41
|
+
| Identity | `set_personal_info`, `set_summary` |
|
|
42
|
+
| Sections | `add_section`, `remove_section`, `reorder_sections`, `rename_section`, `toggle_section_visibility` |
|
|
43
|
+
| Entries | `add_entry`, `update_entry`, `remove_entry` |
|
|
44
|
+
| Style | `set_template`, `set_styling`, `set_locale` |
|
|
45
|
+
| Intelligence | `score_resume`, `tailor_to_jd` |
|
|
46
|
+
| Lookups | `verb_lookup`, `skill_search`, `title_search`, `company_search` |
|
|
47
|
+
| Templates | `templates_list` |
|
|
48
|
+
|
|
49
|
+
## How it works
|
|
50
|
+
|
|
51
|
+
The MCP server reads and writes to the same JSON store as the JuicedResume web app at <https://juicedresume.com>. Changes made via MCP appear in the web editor immediately, and vice-versa.
|
|
52
|
+
|
|
53
|
+
## License
|
|
54
|
+
|
|
55
|
+
MIT — © Harshit Singh
|