mcp-server

PEM2021/mcp-server

3.1

If you are the rightful owner of mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The MCP Server is a FastAPI-based application designed to interact with resumes and send email notifications, with an optional frontend for enhanced user interaction.

MCP Server – Model Context Protocol

A FastAPI server that:

  • āœ… Chats about your CV by parsing a resume PDF
  • āœ… Sends email notifications via SMTP (e.g. Mailtrap)
  • āœ… Has a deployed live server with optional frontend

šŸš€ Live Demo

šŸ”— (https://mcp-server-92fy.onrender.com)


šŸ“ Project Structure

mcp-server/
ā”œā”€ā”€ backend/
│   ā”œā”€ā”€ main.py          # FastAPI entry point
│   ā”œā”€ā”€ resume_parser.py # Extracts text from uploaded resumes
│   ā”œā”€ā”€ email_sender.py  # SMTP email sending logic
│   └── .env.example     # Sample env file
ā”œā”€ā”€ frontend/ (optional)
│   └── Next.js client
ā”œā”€ā”€ requirements.txt
└── README.md