We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mezallastudio/blender-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•275 B
FROM python:3.11-slim
WORKDIR /app
# Install dependencies
RUN pip install mcp
# Copy server code
COPY server.py .
# Set environment variables
ENV BLENDER_HOST=host.docker.internal
ENV BLENDER_PORT=9876
ENV PYTHONUNBUFFERED=1
# Run the server
CMD ["python", "server.py"]