Skip to main content
Glama

MCP Resume Chat Server

by TharakaJayz
start.sh•1.07 kB
#!/bin/bash # MCP Resume Chat Server - Quick Start Script echo "šŸš€ Starting MCP Resume Chat Server..." # Check if Node.js is installed if ! command -v node &> /dev/null; then echo "āŒ Node.js is not installed. Please install Node.js first." exit 1 fi # Check if npm is installed if ! command -v npm &> /dev/null; then echo "āŒ npm is not installed. Please install npm first." exit 1 fi # Install dependencies if node_modules doesn't exist if [ ! -d "node_modules" ]; then echo "šŸ“¦ Installing dependencies..." npm install fi # Check if .env.local exists if [ ! -f ".env.local" ]; then echo "āš ļø .env.local not found. Creating from example..." cp config/env.example .env.local echo "šŸ“ Please edit .env.local with your actual configuration values." fi echo "āœ… Setup complete!" echo "" echo "To start the application:" echo "1. Terminal 1: npm run dev (for frontend)" echo "2. Terminal 2: npm run mcp (for MCP server)" echo "" echo "Then open http://localhost:3000 in your browser" echo "" echo "Happy coding! šŸŽ‰"

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/TharakaJayz/mcp-server'

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