- Home
- MCP servers
- Resume
Resume
- javascript
0
GitHub Stars
javascript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"tg-tian-mcp-resume": {
"command": "npx",
"args": [
"@tgapk/mcp-resume"
]
}
}
}You can generate structured Chinese resume PDFs from JSON data and upload them to a publicly accessible URL using an MCP tool. It includes built-in Chinese font support, automatic layout, clickable links, and configurable module order, making it practical for producing polished resumes quickly and sharing them online.
How to use
Use the MCP client to run the resume generator and upload tool. You provide resume data in JSON, the tool renders a PDF with Chinese font support, and then uploads the PDF to a URL you can share.
Typical workflow a client performs:
- Prepare a JSON object containing personal details, education, experience, projects, skills, honors, and the desired module order.
- Invoke the MCP resume tool through the configured MCP server, passing the JSON as input.
- Receive back a URL that points to the uploaded PDF so you can share or embed the resume.
How to install
Prerequisites: Node.js 18 or newer.
Install dependencies for the project locally.
npm install
Generate a sample resume locally to verify the setup.
node generate_resume.js
MCP server configuration and usage
You can expose the resume generator as an MCP tool using stdio transport. The following MCP server config demonstrates how to register the resume tool under the name resume.
{
"mcpServers": {
"resume": {
"command": "npx",
"args": [
"@tgapk/mcp-resume"
]
}
}
}
Available tools
generate_resume
Generates a PDF resume from a structured JSON input with built-in Chinese font support, centered layout, and clickable links.
upload
Uploads the generated PDF to a public URL and returns the access path.