Skip to main content
Glama

Rishi's Interactive Resume MCP Server

by RishiA
deploy.sh•1.58 kB
#!/bin/bash echo "šŸš€ Rishi's Resume MCP Server - Deployment Script" echo "================================================" echo "" # Check if Docker is installed if command -v docker &> /dev/null; then echo "āœ… Docker is installed" echo "" echo "Option 1: Run with Docker (Recommended)" echo "----------------------------------------" echo "Building Docker image..." docker build -t rishi-resume-mcp . echo "" echo "To run the server:" echo " docker run -p 8000:8000 rishi-resume-mcp" echo "" else echo "āš ļø Docker not found. Using Python instead." fi # Check Python if command -v python3 &> /dev/null; then echo "āœ… Python3 is installed" echo "" echo "Option 2: Run with Python" echo "-------------------------" echo "Installing dependencies..." pip3 install -r requirements.txt echo "" echo "To run the server:" echo " python3 server.py" echo "" elif command -v python &> /dev/null; then echo "āœ… Python is installed" echo "" echo "Option 2: Run with Python" echo "-------------------------" echo "Installing dependencies..." pip install -r requirements.txt echo "" echo "To run the server:" echo " python server.py" echo "" else echo "āŒ Neither Docker nor Python found. Please install one of them." exit 1 fi echo "šŸ“ Sample Questions" echo "===================" cat demo/sample_questions.md | head -20 echo "" echo "... (more questions in demo/sample_questions.md)" echo "" echo "šŸŽÆ Ready to impress your hiring manager!"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/RishiA/rishi-resume-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server