npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mseep/mcp-cv-server

v1.0.0

Published

MCP server for CV chat and email notifications

Downloads

167

Readme

MCP CV Backend

A Model Context Protocol (MCP) server for CV data and email functionality, now available as both an MCP server and a REST API.

Features

  • 📄 CV data parsing from PDF
  • 🔍 Search functionality across CV content
  • 📧 Email notifications via Gmail SMTP
  • 🌐 REST API endpoints for web integration
  • 🛠 MCP tools for AI assistant integration

Quick Start

Local Development

  1. Install dependencies:

    npm install
  2. Set up environment variables in .env:

    [email protected]
    GMAIL_PASS=your-app-password
    MCP_SERVER_PORT=3001
    DEBUG=true
  3. Start the web server:

    npm start
  4. Or start the MCP server:

    npm run start:mcp

Deployment Options

Option 1: Railway (Recommended - Free & Simple)

Railway is perfect for Node.js applications and offers free hosting:

  1. Push to GitHub (if not already done):

    git add .
    git commit -m "Add web server and deployment config"
    git push origin main
  2. Deploy to Railway:

    • Go to railway.app
    • Sign up/login with GitHub
    • Click "New Project" → "Deploy from GitHub repo"
    • Select your mcp-cv-backend repository
    • Railway will automatically detect the Dockerfile and deploy
  3. Set Environment Variables in Railway dashboard:

    • GMAIL_USER: Your Gmail address
    • GMAIL_PASS: Your Gmail app password
    • PORT: 3001 (Railway will set this automatically)
  4. Your API will be available at: https://your-app-name.railway.app

Option 2: Render (Alternative Free Option)

  1. Go to render.com
  2. Connect your GitHub repository
  3. Choose "Web Service"
  4. Use these settings:
    • Build Command: npm install
    • Start Command: npm start
    • Environment: Add your environment variables

Option 3: Vercel (For serverless deployment)

  1. Install Vercel CLI: npm i -g vercel
  2. Deploy: vercel --prod
  3. Set environment variables in Vercel dashboard

API Endpoints

Once deployed, your backend will have these endpoints:

  • GET / - Server info and status
  • GET /health - Health check
  • GET /api/personal - Get personal information
  • GET /api/experience - Get work experience
  • GET /api/education - Get education details
  • GET /api/skills - Get skills list
  • POST /api/search - Search CV content
  • POST /api/email - Send email notification

Frontend Integration

Update your frontend to use the deployed backend URL:

const API_BASE_URL = 'https://your-app-name.railway.app';

// Example API call
const response = await fetch(`${API_BASE_URL}/api/personal`);
const data = await response.json();

Environment Variables

Required environment variables:

  • GMAIL_USER - Your Gmail address
  • GMAIL_PASS - Gmail app password (not your regular password)
  • PORT - Port number (set automatically by most platforms)
  • DEBUG - Set to true for development

Security Notes

  • Never commit your .env file
  • Use Gmail App Passwords, not regular passwords
  • The backend is configured for CORS with your frontend domain

Testing

Run tests with:

npm test

Support

If you encounter issues:

  1. Check the deployment logs
  2. Verify environment variables are set correctly
  3. Ensure your Gmail app password is working
  4. Test the health endpoint: GET /health