Skip to main content
Glama

GCP MCP Server

by JayRajGoyal
docker-compose.yml845 B
version: '3.8' services: gcp-mcp: build: . container_name: gcp-mcp-server ports: - "8080:8080" environment: - GCP_PROJECT=${GCP_PROJECT} - LOG_LEVEL=DEBUG volumes: - ./config.json:/app/config.json:ro - ${GOOGLE_APPLICATION_CREDENTIALS}:/app/credentials.json:ro - ./logs:/app/logs stdin_open: true tty: true restart: unless-stopped healthcheck: test: ["CMD", "python", "-c", "import sys; sys.exit(0)"] interval: 30s timeout: 10s retries: 3 start_period: 40s # Optional: Redis for caching (for development) redis: image: redis:7-alpine container_name: gcp-mcp-redis ports: - "6379:6379" command: redis-server --appendonly yes volumes: - redis_data:/data restart: unless-stopped volumes: redis_data:

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/JayRajGoyal/gcp-mcp'

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