We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dbiswal3942-ctrl/chhotu_sa_mcp_mvp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
quickstart.sh•1.57 kB
#!/bin/bash
# Quick Start Guide for AI PC Assistant MCP Server
echo "🤖 AI PC Assistant MCP Server - Quick Start"
echo "=========================================="
echo ""
# Check Node.js
if ! command -v node &> /dev/null; then
echo "❌ Node.js not found. Please install Node.js 16+ from https://nodejs.org"
exit 1
fi
echo "✅ Node.js $(node --version) found"
echo ""
# Navigate to project
PROJECT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$PROJECT_DIR"
echo "📁 Working in: $PROJECT_DIR"
echo ""
# Install dependencies
if [ ! -d "node_modules" ]; then
echo "📦 Installing dependencies..."
npm install
if [ $? -ne 0 ]; then
echo "❌ Failed to install dependencies"
exit 1
fi
echo "✅ Dependencies installed"
echo ""
fi
# Setup license
if [ ! -f ~/.mcp-license ]; then
echo "🔐 Setting up license..."
npm run setup-license
if [ $? -ne 0 ]; then
echo "❌ Failed to setup license"
exit 1
fi
echo "✅ License created"
echo ""
fi
# Build
if [ ! -d "dist" ]; then
echo "🔨 Building TypeScript..."
npm run build
if [ $? -ne 0 ]; then
echo "❌ Build failed"
exit 1
fi
echo "✅ Build complete"
echo ""
fi
# Start server
echo "🚀 Starting MCP Server..."
echo ""
echo "Available endpoints:"
echo " • STDIO: For Claude Desktop and local AI assistants"
echo " • HTTP: http://127.0.0.1:3000/mcp"
echo " • WebSocket: ws://127.0.0.1:4000"
echo ""
echo "Press Ctrl+C to stop the server"
echo ""
npm run dev