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 dayong@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