We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/portdev0/supabase-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•274 B
FROM python:3.12-slim
WORKDIR /app
# Copy requirements file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the MCP server files
COPY . .
# Command to run the MCP server
CMD ["python", "supabase_mcp/server.py"]