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•350 B
# Python 3.11 slim 이미지 (최소 용량)
FROM python:3.11-slim
# 작업 디렉토리 설정
WORKDIR /app
# 의존성 파일 복사 및 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 애플리케이션 파일 복사
COPY server.py .
COPY file_extractor.py .
# MCP 서버 실행
CMD ["python", "server.py"]