Skip to main content
Glama

Crew Qualifications & Certifications MCP Server

by jbandu
QUICKSTART.mdβ€’2.18 kB
# Quick Start Guide ## πŸš€ 3 Ways to Run the Crew MCP Server ### 1️⃣ Local (Development) - 2 minutes ```bash # Start the server npm run build npm start # Server runs on stdio, ready for MCP clients ``` **Test it:** ```bash npm run inspector # Opens http://localhost:6274 ``` --- ### 2️⃣ Docker (Local Container) - 5 minutes ```bash # Start PostgreSQL + MCP Server npm run docker:compose # View logs npm run docker:compose:logs # Stop npm run docker:compose:down ``` --- ### 3️⃣ Railway (Production) - 5 minutes ```bash # Install Railway CLI npm install -g @railway/cli # Login railway login # Initialize project railway init # Add PostgreSQL railway add --plugin postgresql # Deploy railway up # Initialize database railway run psql $DATABASE_URL -f database/schema.sql railway run psql $DATABASE_URL -f database/seed-data.sql # View logs railway logs ``` --- ## πŸ§ͺ Test the 8 Tools ### Get Crew Qualifications ```json { "crew_identifier": "AVL001", "qualification_types": ["all"] } ``` ### Validate Legality ```json { "crew_identifier": "AVL001", "aircraft_type": "B737-800", "duty_start_utc": "2025-12-01T08:00:00Z", "flight_time_minutes": 360 } ``` ### Calculate Pay ```json { "crew_identifier": "AVL001", "pay_period_start": "2024-12-01", "pay_period_end": "2024-12-15" } ``` --- ## πŸ“š Documentation - **DEPLOYMENT.md** - Full deployment guide - **RAILWAY.md** - Railway-specific instructions - **DEPLOYMENT_SUMMARY.md** - What was built and tested - **README.md** - Complete project documentation --- ## βœ… Current Status - βœ… Server tested and working locally - βœ… MCP Inspector tested (http://localhost:6274) - βœ… All 8 tools passing integration tests - βœ… Docker configuration ready - βœ… Railway configuration ready - βœ… Database schema initialized (10 tables, 50 crew) - βœ… Production ready --- ## 🎯 Next Step: Deploy to Railway ```bash railway login railway init railway add --plugin postgresql railway up railway run psql $DATABASE_URL -f database/schema.sql railway run psql $DATABASE_URL -f database/seed-data.sql ``` **Done! πŸŽ‰** Your MCP server is now running in production at Railway.

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/jbandu/crew-mcp'

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