ZHZ1024's picture
Create Dockerfile
fd0a1ba verified
raw
history blame contribute delete
257 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install mcpo uv
# Replace with your MCP server command; example: uvx mcp-server-time
CMD ["uvx", "mcpo", "--host", "0.0.0.0", "--port", "8000", "--", "uvx", "@modelcontextprotocol/server-sequential-thinking","-y"]