Personal Resume Agent
FreeNot checkedExposes a personalized AI agent that reads your resume and provides intelligent responses about your professional background through a standardized MCP server i
About
Exposes a personalized AI agent that reads your resume and provides intelligent responses about your professional background through a standardized MCP server interface with RAG capabilities.
README
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
personal-resume-agent/
├── src/ # Source code
│ ├── resume_rag.py # RAG system for resume processing
│ ├── personal_resume_agent.py # Main agent logic
│ └── mcp_resume_server.py # MCP server implementation
├── data/ # Resume files storage
├── tests/ # Test files
├── docs/ # Documentation
├── examples/ # Usage examples
└── requirements.txt # Python dependencies
Usage Examples
Direct Agent Usage
from personal_resume_agent import PersonalResumeAgent
agent = PersonalResumeAgent()
await agent.initialize()
# Ask questions about your resume
result = await agent.process_query("What programming languages do I know?")
print(result['response'])
# Analyze skill match for a job
match = await agent.get_skill_match("Python, React, AWS, Docker")
print(f"Match: {match['match_percentage']}%")
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):
{
"mcpServers": {
"personal-resume": {
"command": "python",
"args": ["/path/to/personal-resume-agent/src/mcp_resume_server.py"],
"cwd": "/path/to/personal-resume-agent"
}
}
}
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 control - Never commit personal resume files to public repositories
Architecture
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Resume Files │───▶│ RAG System │───▶│ MCP Server │
│ (PDF/DOCX) │ │ (ChromaDB + │ │ (Claude Tool) │
│ │ │ Transformers) │ │ │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│
▼
┌─────────────────┐
│ Personal Resume │
│ Agent │
│ (Query Engine) │
└─────────────────┘
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.
Installing Personal Resume Agent
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/vsiwach/personal-resume-agentFAQ
Is Personal Resume Agent MCP free?
Yes, Personal Resume Agent MCP is free — one-click install via Unyly at no cost.
Does Personal Resume Agent need an API key?
No, Personal Resume Agent runs without API keys or environment variables.
Is Personal Resume Agent hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Personal Resume Agent in Claude Desktop, Claude Code or Cursor?
Open Personal Resume Agent on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Personal Resume Agent with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
