Skip to main content
Glama
JDeun

Unified Search MCP Server

by JDeun
Dockerfile.backup855 B
# Smithery Python MCP 서버용 Dockerfile FROM python:3.11-slim # 작업 디렉토리 설정 WORKDIR /app # 시스템 패키지 업데이트 및 필요한 패키지 설치 RUN apt-get update && apt-get install -y \ gcc \ g++ \ git \ && rm -rf /var/lib/apt/lists/* # 의존성 파일 복사 및 설치 COPY requirements.txt . RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir -r requirements.txt # 애플리케이션 코드 복사 COPY . . # 환경 변수 설정 ENV PYTHONUNBUFFERED=1 ENV MCP_ENV=production ENV SMITHERY_ENV=true # Smithery를 위한 uvicorn 설치 (HTTP transport용) RUN pip install uvicorn # 포트 노출 (Smithery 기본값) EXPOSE 8080 # 서버 실행 - Smithery는 이 커맨드를 덮어씁니다 CMD ["python", "unified_search_server.py", "--transport", "streamable-http"]

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/JDeun/unified-search-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server