We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Datajang/mcp-narajangteo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•715 B
# Python 3.11 slim 이미지
FROM python:3.11-slim
# Python 출력 버퍼링 해제 (로그 즉시 출력)
ENV PYTHONUNBUFFERED=1
# 한글/UTF-8 강제 설정 (필수)
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
# 작업 디렉토리 설정
WORKDIR /app
# 시스템 패키지 설치 (lxml 등 의존성)
RUN apt-get update && apt-get install -y \
gcc \
libxml2-dev \
libxslt-dev \
&& rm -rf /var/lib/apt/lists/*
# 전체 프로젝트 복사
COPY pyproject.toml README.md ./
COPY src/ ./src/
COPY main.py ./
# ADD THIS LINE:
COPY .well-known/ ./.well-known/
# 의존성 설치
RUN pip install --no-cache-dir -e .
# MCP 서버 실행 (smithery.yaml commandFunction과 일치)
CMD ["python", "main.py"]