We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sankethsura/mcp-server-test'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•344 B
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy server file
COPY mcp_server.py .
# Expose port (if needed for HTTP transport in future)
EXPOSE 8000
# Run the MCP server
CMD ["python3", "mcp_server.py"]