Skip to main content
Glama

mcp-google-sheets

docker-entrypoint.sh1.04 kB
#!/bin/sh # Set default values if not provided export AP_APP_TITLE="${AP_APP_TITLE:-Activepieces}" export AP_FAVICON_URL="${AP_FAVICON_URL:-https://cdn.activepieces.com/brand/favicon.ico}" # Debug: Print environment variables echo "AP_APP_TITLE: $AP_APP_TITLE" echo "AP_FAVICON_URL: $AP_FAVICON_URL" # Process environment variables in index.html BEFORE starting services envsubst '${AP_APP_TITLE} ${AP_FAVICON_URL}' < /usr/share/nginx/html/index.html > /usr/share/nginx/html/index.html.tmp && \ mv /usr/share/nginx/html/index.html.tmp /usr/share/nginx/html/index.html # Start Nginx server nginx -g "daemon off;" & # Start backend server if [ "$AP_CONTAINER_TYPE" = "APP" ] && [ "$AP_PM2_ENABLED" = "true" ]; then echo "Starting backend server with PM2 (APP mode)" pm2-runtime start dist/packages/server/api/main.js --name "activepieces-app" --node-args="--enable-source-maps" -i 0 else echo "Starting backend server with Node.js (WORKER mode or default)" node --enable-source-maps dist/packages/server/api/main.js fi

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/activepieces/activepieces'

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