Skip to main content
Glama

WeWork MCP Server

by FOX2920
Dockerfile700 B
FROM python:3.12-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ g++ \ && rm -rf /var/lib/apt/lists/* # Copy requirements first for better caching COPY requirements.txt . # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY . . # Create non-root user RUN useradd -m -u 1000 mcpuser && chown -R mcpuser:mcpuser /app USER mcpuser # Expose port (if needed for HTTP endpoint) EXPOSE 8000 # Set environment variables ENV PYTHONPATH=/app ENV PYTHONUNBUFFERED=1 # Command to run the HTTP server for cloud deployment CMD ["python", "wework_http_server.py"]

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/FOX2920/Aplus-MCP'

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