Skip to main content
Glama

mcp-proxy

Dockerfile793 B
# Use the official Astral uv image with Python 3.12 on Alpine FROM ghcr.io/astral-sh/uv:python3.12-alpine # Install nodejs and npm for the npx command (runtime dependency for context7) # Alpine's package manager is apk RUN apk add --no-cache nodejs npm # Set the working directory WORKDIR /app # Copy requirements and install Python dependencies using the pre-installed uv COPY requirements.txt servers.json . RUN uv pip install --system --no-cache-dir -r requirements.txt # Copy the rest of the application code COPY . . # Copy and set up entrypoint script COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh # Expose ports for both SSE (8000) and HTTP (8001) transports EXPOSE 8000 8001 # Use entrypoint script to handle transport configuration ENTRYPOINT ["/entrypoint.sh"]

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/sokunmin/mcp-proxy'

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