We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/batprem/set-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•664 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.11-slim
# Install build dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Set work directory
WORKDIR /app
# Copy local code to the container
COPY . /app
# Install pip dependencies with no scripts
RUN pip install --upgrade pip \
&& pip install --ignore-installed --no-cache-dir .
# Expose port 8000 (if needed)
EXPOSE 8000
# Command to run the MCP server via stdio transport
# Using the installed script provided by the package
ENTRYPOINT ["set-mcp"]
CMD ["--transport", "stdio"]