vanam-vo2-agent

LeeJunHeon/vanam-vo2-agent
★ 0 stars Python 🗄️ Database Updated today
ETL + MCP server + analysis worker for VANAM VO2 thin-film process data, exposing read-only tools to GPT agents via PostgreSQL vo2 schema.
View on GitHub →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "vanam-vo2-agent": {
      "command": "uvx",
      "args": [
        "vanam-vo2-agent"
      ]
    }
  }
}

Or install with pip: pip install vanam-vo2-agent

README Excerpt

VO2 박막 공정 데이터 통합 분석 시스템. Synology NAS의 Docker 컨테이너로 배포되는 Python ETL/MCP 서비스. ``` . ├── etl-worker/ # 5분마다 SMB 파일 → vo2 schema 적재 ├── mcp-server/ # FastAPI read-only API (portal-nextjs SSR이 호출) ├── analysis-worker/ # daily batch (Phase 2 이후) ├── shared/ # 공통 SQLAlchemy 모델, config, logger