Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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.md

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

  1. Install Dependencies
   pip install -r requirements.txt
  1. Add Your Resume
   # Place your resume files in the data/ directory
   cp your-resume.pdf data/
  1. Test the Agent
   cd src
   python personal_resume_agent.py
  1. Run 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 content
  • get_agent_info: Get agent capabilities and status
  • analyze_skill_match: Compare skills with job requirements
  • get_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

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT License - See LICENSE file for details.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.