We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/guilyx/ascii-banner-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml .
COPY src/ ./src/
RUN pip install --no-cache-dir -e .
# stdio by default (use with `docker run -i`); set MCP_TRANSPORT=streamable-http for HTTP
ENV MCP_TRANSPORT=stdio
EXPOSE 8000
CMD ["python", "-m", "ascii_banner_mcp.server"]