Personal Resume Agent
A personalized AI agent that reads your resume and provides intelligent responses about your professional background through a standardized MCP (Model Context Protocol) server interface. Built with RAG (Retrieval-Augmented Generation) capabilities to make your professional information queryable through Claude Desktop.
Features
Resume Processing: Automatically reads and processes resume files (PDF, DOCX, TXT, MD)
RAG System: Uses ChromaDB and sentence transformers for intelligent content retrieval
MCP Server: Exposes functionality through standardized MCP protocol
Skill Matching: Analyzes how well your skills match job requirements
Natural Language Interface: Ask questions about your experience, skills, education, etc.
Quick Start
Install Dependencies
pip install -r requirements.txtAdd Your Resume
# Place your resume files in the data/ directory cp your-resume.pdf data/Test the Agent
cd src python personal_resume_agent.pyRun as MCP Server
cd src python mcp_resume_server.py
Project Structure
Usage Examples
Direct Agent Usage
MCP Server Tools
The MCP server exposes these tools:
query_resume
: Ask questions about resume contentget_agent_info
: Get agent capabilities and statusanalyze_skill_match
: Compare skills with job requirementsget_resume_summary
: Get overview of resume knowledge base
Configuration
Claude Desktop Integration
Add to your Claude Desktop config (claude_desktop_config.json
):
Supported File Formats
PDF: Extracted using PyPDF2
DOCX: Processed with python-docx
TXT/MD: Plain text files
Requirements
Python 3.8+
ChromaDB for vector storage
Sentence Transformers for embeddings
PyPDF2 for PDF processing
python-docx for Word documents
Privacy & Security
🔒 Important Privacy Notes:
All resume data is processed locally on your machine
No personal information is sent to external services
Vector database is stored locally in
data/resume_vectordb/
The
data/
directory is excluded from version controlNever commit personal resume files to public repositories
Architecture
Contributing
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - See LICENSE file for details.
This server cannot be installed
local-only server
The server can only run on the client's local machine because it depends on local resources.
Enables Claude to intelligently query and analyze your resume using RAG technology. Supports skill matching against job requirements and answering questions about your professional background from locally stored resume files.