Resume Management System with Model Context Protocol (MCP) Integration
Open Systems Lab - [email protected]
Pipeline that transforms Markdown resumes into multiple formats using AI processing, containerized workflows, and DevOps practices.
This project addresses the need to reformat Markdown resumes with custom LaTeX styles and fonts, while generating text-based formats for easy copy-paste integration with LinkedIn profiles. The implementation applies DevOps practices through:
- CI/CD Pipeline: Automated workflow for consistent resume processing
- Model Context Protocol (MCP): Integration for agentic applications with AI platforms
- Testing Infrastructure: Validation using the ACT tool for GitHub Actions workflows
This capstone project demonstrates the application of DevOps methodology and MCP extensions to personal document management, combining traditional document processing with modern AI integration and automated testing practices.
- AI Processing: MCP server with Claude integration for resume analysis
- Multi-Format Output: PDF (LaTeX), LinkedIn templates, clean text formats
- Automated CI/CD: GitHub Actions pipeline with Docker containerization
- Local Testing: Test suite with ACT integration
- Production Ready
- Architecture Overview - System design and component relationships
- MCP Implementation - Model Context Protocol server details
- Claude Integration Guide - Setting up Claude AI with MCP
- Cursor IDE Integration - Development environment setup
- MCP Server Setup - MCP server configuration
- Quick Start Guide - Get started in 5 minutes
- Workflow Diagrams - Visual process flows
- Documentation Index - Documentation reference
- Testing Overview - Test scripts and usage
- ACT Testing Guide - Local GitHub Actions testing
- Sample Resume - Template and examples
- Docker
- Go (for MCP server)
- Git
# Build MCP server
make build
# Run tests
make test-all
# Start MCP server
make run
# Test MCP functionality
make test-mcp
# Build container
docker build -t resume-processor .
# Process resume
docker run --rm \
-v "$(pwd)/input:/workspace/input:ro" \
-v "$(pwd)/output:/workspace/output" \
resume-processor
# Process resume with local script
make process-resume
Building:
make build # Build MCP server binary
make build-all # Build for all platforms
make docker-build # Build Docker image
Testing:
make test # Run unit tests
make test-all # Run all tests (unit + integration)
make test-mcp # Test MCP server functionality
make test-act # Test GitHub Actions locally
make test-integration # Run integration test suite
Running:
make run # Start MCP server (HTTP mode)
make run-stdio # Start MCP server (stdio mode)
make process-resume # Run resume processing script
Setup:
make pipeline-setup # Install dependencies
make integration-setup # Verify scripts setup
make mcp-setup # Configure MCP for Claude
resume/
βββ README.md # This file
βββ Makefile # Build and test automation
βββ Dockerfile # Container definition
βββ go.mod, go.sum # Go dependencies
βββ cmd/server/ # MCP server entry point
βββ pkg/ # Go packages
β βββ mcp/ # MCP protocol implementation
β βββ processor/ # Resume processing logic
β βββ server/ # HTTP server implementation
βββ scripts/ # Processing scripts
β βββ process_resume.sh # Main processing script
β βββ linkedin_template_generator.py
β βββ requirements.txt
β βββ testing/ # Test scripts
β βββ README.md # Testing documentation
β βββ run-tests.sh # Main test runner
β βββ test-mcp.sh # MCP server tests
β βββ test-act.sh # ACT pipeline tests
βββ docs/ # Documentation
β βββ architecture/ # System architecture docs
β βββ integration/ # Integration guides
β βββ guides/ # User guides
β βββ testing/ # Testing documentation
β βββ samples/ # Example files
βββ local/ # Local resume files
βββ .github/workflows/ # CI/CD pipeline
βββ .vscode/ # VS Code configuration
- LaTeX formatting via Pandoc
- Multi-page support with pagination
- Typography optimized for ATS systems
- Headline: 220 character summary
- About Section: 2600 character summary
- Experience Entries: Formatted job descriptions
- Skills Categories: Organized technical competencies
- Clean text format (no emojis/special characters)
- Resume content extraction and analysis
- Skills categorization and gap analysis
- ATS optimization recommendations
- Industry-specific customizations
The repository includes template files for local configuration:
- Claude Desktop Configuration:
cp claude-desktop-config.json.template claude-desktop-config.json
# Edit paths to match your system
- ACT Configuration (for local GitHub Actions testing):
cp .actrc.template .actrc
# Customize as needed
- Secrets (for testing with tokens):
cp .secrets.template .secrets
# Add your GitHub token
After copying the template, update claude-desktop-config.json
with your actual paths:
{
"mcpServers": {
"resume-processor": {
"command": "/your/actual/path/to/resume-processor-mcp",
"args": ["stdio", "--work-dir", "/your/actual/path/to/resume/directory"],
"env": {
"WORK_DIR": "/your/actual/path/to/resume/directory"
}
}
}
}
WORK_DIR
: Working directory for resume processingLOG_LEVEL
: Logging level (debug, info, warn, error)PORT
: HTTP server port (default: 8080)
Note: Configuration files are in .gitignore
to keep personal paths private.
- Triggers: Push to resume files, manual dispatch
- Processing: Automated PDF and LinkedIn template generation
- Artifacts: 90-day retention with downloadable outputs
- Branches:
main
,master
,develop
# Install ACT
brew install act
# Test workflows locally
make test-act
# Full workflow test with Docker
make test-act-full
Open Systems Lab
π§ Email: [email protected]
π Resume processing solutions
- Check the documentation for your specific use case
- Review testing guides for troubleshooting
- Run
make help
for available commands - Contact us for enterprise support
This project is licensed under the MIT License - see the LICENSE file for details.
Tooling by Open Systems Lab.
Resume processing with AI integration π―
- β MCP Integration: Added Claude AI integration via Model Context Protocol
- β Testing Framework: Test suite with ACT support
- β Documentation: Organized docs structure with guides
- β Project Cleanup: Streamlined structure with proper script organization
- β Makefile Enhancement: Added build and test targets