We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/elijahdev0/MCP-Runware'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•605 B
# Use the official Python 3.11-slim image as the base image.
FROM python:3.11-slim
# Set the working directory inside the container to /app.
WORKDIR /app
# Copy all files from the current directory into /app in the container.
COPY . /app
# Install required Python packages from requirements.txt.
RUN pip install --no-cache-dir -r requirements.txt
# Ensure the app runs in HTTP transport mode by default.
ENV TRANSPORT=http
# Expose port 8081 so that the container can accept incoming connections.
EXPOSE 8081
# Define the command to run your HTTP MCP server.
CMD ["python", "runware_mcp_server.py"]