Skip to main content
Glama

Context Pods

by conorluddy
start-server.shโ€ข1.45 kB
#!/bin/bash # Context-Pods Meta-MCP Server Startup Script # Builds and starts the Meta-MCP server set -e echo "๐Ÿš€ Starting Context-Pods Meta-MCP Server..." # Check if Node.js is installed if ! command -v node &> /dev/null; then echo "โŒ Node.js is not installed. Please install Node.js 18 or higher." exit 1 fi # Check Node.js version NODE_VERSION=$(node -v | cut -d'v' -f2 | cut -d'.' -f1) if [ "$NODE_VERSION" -lt 18 ]; then echo "โŒ Node.js version 18 or higher is required. Current version: $(node -v)" exit 1 fi # Get script directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PROJECT_ROOT="$(dirname "$SCRIPT_DIR")" echo "๐Ÿ“‚ Project root: $PROJECT_ROOT" # Change to project root cd "$PROJECT_ROOT" # Install dependencies if needed if [ ! -d "node_modules" ]; then echo "๐Ÿ“ฆ Installing dependencies..." npm install fi # Build the project echo "๐Ÿ”จ Building packages..." npm run build # Check if server package was built if [ ! -f "packages/server/dist/src/index.js" ]; then echo "โŒ Server build failed. dist/src/index.js not found." exit 1 fi # Start the server echo "โœ… Build complete. Starting Meta-MCP Server..." echo "" echo "๐Ÿ”Œ The server is now running and ready for MCP client connections." echo "๐Ÿ“– See docs/MCP_CLIENT_SETUP.md for configuration instructions." echo "" # Start the server (this will run indefinitely) node packages/server/dist/src/index.js

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/conorluddy/ContextPods'

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