We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nikhilkumaragarwal-shyftlabs/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•334 B
FROM python:3.11-slim
WORKDIR /app
# Install LLM Sandbox with MCP and Docker support
RUN pip install --upgrade pip && pip install 'llm-sandbox[mcp-docker]'
ENV BACKEND=docker
CMD ["python", "-m", "llm_sandbox.mcp_server.server"]
# Set default port
ARG DEFAULT_PORT=8000
# The port the app runs on
EXPOSE ${PORT:-${DEFAULT_PORT}}