Skip to main content
Glama

GCP MCP Server

by JayRajGoyal
Dockerfile576 B
FROM python:3.11-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Install the package in development mode RUN pip install -e . # Create non-root user RUN useradd -m -u 1000 gcpmcp && chown -R gcpmcp:gcpmcp /app USER gcpmcp # Expose port EXPOSE 8080 # Default command CMD ["python", "-m", "gcp_mcp.cli"]

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