Syncs professional certifications and achievement badges from Credly profiles to automatically include credentials in CVs
Tracks code contributions by extracting commit history from local repositories, including commit details, code changes (diffs), and impact analysis to automatically update CVs with development work
Pulls completed Jira tickets and tasks to document project work and accomplishments for CV generation (requires testing)
Generates and formats professional CVs using LaTeX templates with configurable formatting rules
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CV Resume Builder MCPGenerate an enhanced CV using my recent commits and certifications from the last 6 months"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CV Resume Builder MCP
AI-powered CV and resume builder using Model Context Protocol (MCP)
Automatically generate and update your CV/resume from git commits, Jira tickets, Credly certifications, and LinkedIn. Built for professionals who want their CV to stay current without manual updates. Generates ATS-compliant LaTeX CVs that pass Applicant Tracking Systems.
Features
π Git commits - Track your code contributions automatically β
π« Jira tickets - Pull completed projects and tasks β οΈ (requires testing)
π Credly badges - Sync certifications and achievements β
πΌ LinkedIn profile - Not implemented yet π§ (authentication required)
π PDF parsing - Extract content from existing CVs β
π Enhanced CV generation - Combine all data sources β
π LaTeX support - Generate professional, ATS-compliant CVs β
π€ ATS-friendly - Clean formatting that passes Applicant Tracking Systems β
Quick Start
Prerequisites
Python 3.10+
uvinstalled (for uvx):curl -LsSf https://astral.sh/uv/install.sh | shAn MCP-compatible AI assistant (Claude Desktop, Kiro, etc.)
Installation
Using uvx (recommended - no installation needed!):
Just configure your MCP client and uvx handles the rest.
Or install with pip:
pip3 install cv-resume-builder-mcpNote: The configurations below use
uvxwhich automatically downloads and runs the latest version from PyPI. If you're developing locally or want to test unreleased features, see TESTING.md for local development setup.
Configuration
For Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"cv-resume-builder": {
"command": "uvx",
"args": ["cv-resume-builder-mcp"],
"env": {
"AUTHOR_NAME": "your-git-username",
"REPOS": "default:/absolute/path/to/your-repo"
}
}
}
}For multiple repositories: Change REPOS to: "CompanyA:/path1,CompanyB:/path2,Personal:/path3"
For Kiro IDE
Edit ~/.kiro/settings/mcp.json:
{
"mcpServers": {
"cv-resume-builder": {
"command": "uvx",
"args": ["cv-resume-builder-mcp"],
"env": {
"AUTHOR_NAME": "your-git-username",
"REPOS": "default:/absolute/path/to/your-repo"
}
}
}
}For multiple repositories: Change REPOS to: "CompanyA:/path1,CompanyB:/path2,Personal:/path3"
Important: Use absolute paths (no ~). Get it with pwd in your repo directory.
Restart Your AI Assistant
After configuration, restart Claude Desktop or Kiro to load the MCP server.
Test It
"List available MCP tools"You should see tools like get_git_log, read_cv, parse_cv_pdf, etc.
Usage Examples
"Get my git commits from the last 6 months and suggest CV updates"With multiple repositories:
"List all my configured repositories"
"Get my commits from CompanyA for the last 3 months"
"Show me all my work across all repositories in the last year"Parse existing CV
"Parse my CV at ~/Documents/resume.pdf"Generate enhanced CV
"Generate an enhanced CV using my existing resume.pdf and recent work from the last 3 months"Get certifications
"Get my Credly badges and add them to my CV"Analyze commit impact (NEW!)
"Analyze my commits from the last month and show me what I actually built"
"Get detailed code changes for commit abc123 to understand the impact"
"Show me the stats for my recent commits to highlight achievements"Career guidance
"Based on my commits, Jira tickets, and certifications, what seniority level am I at?"
"Analyze my work and suggest what skills I need for senior/staff/principal level"
"Review my achievements and help me position myself for a promotion"
"What's missing from my profile to reach the next level?"Optional Integrations
Add these to your MCP configuration's env section:
Jira (β οΈ Requires Testing)
"JIRA_URL": "https://your-company.atlassian.net",
"JIRA_EMAIL": "your-email@example.com",
"JIRA_API_TOKEN": "your-api-token",
"JIRA_USER": "your-email@example.com"Get API token: https://id.atlassian.com/manage-profile/security/api-tokens
Note: Jira integration is functional but requires more testing across different Jira configurations. Please report any issues!
Credly (β Fully Tested)
"CREDLY_USER_ID": "your-credly-username"Find your username in your Credly profile URL: https://www.credly.com/users/YOUR-USERNAME
LinkedIn (π§ Not Implemented)
"LINKEDIN_PROFILE_URL": "https://www.linkedin.com/in/yourprofile"Note: LinkedIn integration is not yet implemented due to authentication requirements. The tool currently only returns your profile URL. For now, manually copy your LinkedIn achievements to wins.md file. Contributions welcome!
CV Formatting
"MAX_BULLETS_PER_EXPERIENCE": "5"Available Tools
Tool | Description |
| Get your git commits from default repo (excludes merge commits) |
| List all configured repositories |
| Get commits from a specific repository |
| Get commits from all repos, grouped by project |
| NEW! Get detailed commit info including code changes (diff) for impact analysis |
| NEW! Analyze multiple commits with stats to understand actual work done |
| Read your current LaTeX CV |
| Read your wins.md achievements file |
| Get completed Jira tickets |
| Get your certifications from Credly |
| Read your LinkedIn profile summary |
| Extract text from existing CV/resume PDF |
| Combine all data sources into comprehensive report |
| Get formatting rules and constraints |
Project Structure
cv-resume-builder-mcp/
βββ src/cv_resume_builder_mcp/
β βββ __init__.py
β βββ server.py # Main MCP server
βββ tests/
β βββ test_server.py # Unit tests
βββ pyproject.toml # Package configuration
βββ requirements.txt # Dependencies
βββ .env.example # Configuration template
βββ cv.tex # LaTeX CV template
βββ wins.md # Manual achievements tracking
βββ README.md # This fileDevelopment
For End Users (Production)
Use the uvx configuration shown above. It automatically downloads the latest stable version from PyPI.
For Contributors (Local Development)
Just testing locally? Clone the repo:
git clone https://github.com/eyaab/cv-resume-builder-mcp.git
cd cv-resume-builder-mcp
pip install -e ".[dev]"Want to contribute changes? Fork first, then clone your fork:
Click "Fork" on GitHub
Clone your fork:
git clone https://github.com/YOUR-USERNAME/cv-resume-builder-mcp.git
cd cv-resume-builder-mcp
pip install -e ".[dev]"Then use the local development configuration from TESTING.md which uses python3 -m instead of uvx.
Run Tests
pytestFormat Code
black src/
ruff check src/Contributing
Contributions welcome! Please:
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Ensure no credentials are hardcoded
Submit a pull request
See CONTRIBUTING.md for details.
Troubleshooting
MCP server not showing up
Verify absolute paths in config (use
pwd)Restart your AI assistant completely
Check for typos in configuration
Git log returns empty
Check your git author name:
git config user.nameUpdate
AUTHOR_NAMEto match exactly
"Command not found: uvx"
Install uv:
curl -LsSf https://astral.sh/uv/install.sh | shOr:
brew install uv
Jira/Credly errors
Verify API tokens are correct
Check URLs don't have trailing slashes
Ensure services are accessible
Security
All credentials stored in environment variables
No data sent to external services except configured integrations
Git history stays local
Open source - audit the code yourself
License
MIT License - see LICENSE file for details.
Support
π Report bugs - Open an issue on GitHub
π‘ Request features - Create a feature request issue
π¬ Ask questions - Start a discussion on GitHub
Keywords: cv builder, resume builder, mcp, model context protocol, ai resume, ai cv, automatic cv, career tracker, latex cv, resume generator, cv generator, developer resume, tech resume, ats compliant, ats friendly, applicant tracking system
Made with β€οΈ for developers who hate updating their CVs manually