Build, version and render resumes as PDFs from Claude or any MCP client.
ResuStack is an AI resume builder. Import a PDF or your LinkedIn profile, pick one of 14 designs, and edit by form or by chat β in the browser, or straight from Claude through its MCP server. Every change is reversible, and the PDF you download is rendered from the same template as the live preview.
π Live: resustackapp.com
ResuStack is a Model Context Protocol server. Claude β or any MCP client with Streamable HTTP and custom headers β writes the resume; ResuStack stores it, versions it and renders it.
1. Create a token. Sign in, open Profile β API token, and create one. It is shown once; replacing it revokes the old one. The Profile page also shows the endpoint address to use.
2. Add the server. With Claude Code:
claude mcp add --transport http resustack https://resustackapp.com/mcp --header "Authorization: Bearer YOUR_TOKEN"
Authentication is a bearer token only; session cookies are not accepted on this endpoint.
3. Ask. "List my resumes", "Switch my CV to the Label Gutter design and give me the PDF", "Fill What I'm working on from what we did this month."
| Tool | What it does |
|---|---|
list_resumes | Resumes on the account: id, title, language, template |
get_resume | The full stored content of one resume |
create_resume | Create a resume from structured content |
update_resume | Replace a resume's content (read it first β this is a replace, not a merge) |
set_focus_areas | Set only the "What I'm working on" section; the rest of the resume is untouched |
list_templates | The designs, with a description and whether each is ATS-safe |
set_template | Change a resume's design |
render_pdf | A download link for the PDF β single use, expires in 10 minutes |
check_quota | What the account has left this month |
| Prompt | What it does |
|---|---|
focus_areas_from_my_work | Has the client's model summarise the work you have actually done β from the conversations it can see β into a few lines, show them to you, and save them with set_focus_areas only after you approve |
server.json at the repository root describes the server for the official MCP Registry as com.resustackapp/resustack. Publishing under that name requires proving ownership of resustackapp.com with a file served at /.well-known/mcp-registry-auth:
Generate a key pair locally. Never commit key.pem (it is in .gitignore):
openssl genpkey -algorithm Ed25519 -out key.pem
Print the proof record and set it as the MCP_REGISTRY_AUTH environment variable in Dokploy, then redeploy:
echo "v=MCPv1; k=ed25519; p=$(openssl pkey -in key.pem -pubout -outform DER | tail -c 32 | base64)"
Check it is live:
curl https://resustackapp.com/.well-known/mcp-registry-auth
Log in and publish from the repository root:
mcp-publisher login http --domain resustackapp.com --private-key "$(openssl pkey -in key.pem -noout -text | grep -A3 'priv:' | tail -n +2 | tr -d ' :\n')"
mcp-publisher publish
Bump version in server.json (and SERVER_INFO in mcp_server/protocol.py) for each new listing.




Free to start. Pro is a one-time purchase for a period β no subscription.
| Free plan | Limit |
|---|---|
| Resumes | 3 |
| PDF or LinkedIn imports | 2 / month |
| AI enhancements | 10 / month |
| PDF downloads | 5 / month |
| Agent chat messages | 10 / month |
| Tracked applications | 3 |
| Restore points per resume | 5 |
Pro removes these limits. Current prices are on the pricing page. Limits live in FREE_TIER_LIMITS in core/settings.py.
git clone https://github.com/koksalkapucuoglu/resume-enhance.git
cd resume-enhance && cp .env.example .env
| Variable | Description | Example |
|---|---|---|
OPENAI_API_KEY | OpenAI API key | sk-proj-... |
SECRET_KEY | Django secret key | any long random string |
DEBUG | Debug mode | True |
ALLOWED_HOSTS | Allowed hosts | localhost,127.0.0.1 |
POSTGRES_DB / POSTGRES_USER / POSTGRES_PASSWORD | Database credentials | postgres |
POSTGRES_HOST / POSTGRES_PORT | Database address | db / 5432 |
EMAIL_HOST_USER / EMAIL_HOST_PASSWORD | SMTP for password reset (optional) | |
DOWNLOAD_LINK_MAX_AGE | Seconds a signed PDF link stays valid (optional) | 600 |
MCP_REGISTRY_AUTH | MCP Registry domain proof served at /.well-known/mcp-registry-auth (optional, public key only) | v=MCPv1; k=ed25519; p=... |
PAYMENT_STATUS | coming_soon shows plans without taking payment; live enables checkout | coming_soon |
PAYMENT_PROVIDER, PAYMENT_WEBHOOK_SECRET, CHECKOUT_URL_*, PRODUCT_ID_* | Payment provider settings (optional) |
docker compose up --build
The app runs at http://localhost:8000.
docker compose exec web python manage.py test resume mcp_server
WeasyPrint and OpenAI are mocked in the unit tests; no API calls are made.
Production runs on Dokploy. Every push to main triggers a deploy through a GitHub webhook: Dokploy builds the Dockerfile, and entrypoint.sh runs migrate and collectstatic before starting Gunicorn. Traefik handles HTTPS.
Setting it up on a new server:
curl -sSL https://dokploy.com/install.sh | shhttp://YOUR_SERVER_IP:3000 and create an admin account.env.prod.example) and the domain, then deployNotes:
ENTRYPOINT does everythingdocker-compose.prod.yml and the Caddyfile are kept for self-hosting without Dokploy; they are not what production uses.
What ResuStack collects, who processes it (including OpenAI for AI features) and how to delete it: resustackapp.com/privacy. The Turkish version, written as the KVKK information notice, is at resustackapp.com/gizlilik. Users can delete their account and all its data from the Profile page.
Monolithic Django: views, DRF API, an MCP endpoint, WeasyPrint for PDFs, OpenAI for parsing and writing. Resume content is a single JSONField; every design comes from one catalogue in resume/resume_templates.py. The full guide β conventions, patterns and pitfalls β is in .claude/CLAUDE.md.
Open Source.
This listing does not have a supported local package template. Use the maintainerβs documentation for its hosted endpoint, authentication, and client-specific setup. No install command has been inferred.