# Use a Python base image that satisfies the project requirements
FROM python:3.12-slim AS base
# Install the uv package manager
RUN pip install uvx
# Set the working directory in the container
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . .
# Install dependencies
RUN uvx sync --frozen --no-dev --no-editable
# Expose the port the app runs on
EXPOSE 8000
# Set environment variables required for running the MCP server
ENV FLOWISE_API_KEY=your_api_key
ENV FLOWISE_API_ENDPOINT=http://localhost:3000
# Define the command to run the app
CMD ["uvx", "--from", "git+https://github.com/matthewhand/mcp-flowise", "mcp-flowise"]
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/matthewhand/mcp-flowise'
If you have feedback or need assistance with the MCP directory API, please join our Discord server