MCP-서버 리팩토링 후 P&ID 추출 테스트전 다른 기능 확인 후 커밋

This commit is contained in:
windpacer
2026-05-04 10:35:13 +09:00
parent a0404b1fee
commit 15c17522c8
304 changed files with 5431877 additions and 0 deletions

37
mcp-server/pyproject.toml Normal file
View File

@@ -0,0 +1,37 @@
[project]
name = "iiot-rag-mcp"
version = "0.1.0"
description = "ExperionCrawler Unified MCP Server — RAG + NL2SQL"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.0.0",
"fastapi>=0.115.0",
"uvicorn>=0.34.0",
"qdrant-client>=1.9.0",
"sentence-transformers>=3.0.0",
"openai>=1.0.0",
"httpx>=0.27.0",
"psycopg[binary]>=3.1.0",
# P&ID 파싱
"ezdxf>=1.3.0",
# ARM64 환경 지원: paddlepaddle 3.x는 ARM64 wheel 미지원
# 2.6.0~2.9.x는 소스 빌드 가능
"paddlepaddle>=2.6.0,<3.0.0",
# paddleocr 2.7.0+는 paddlepaddle 3.3.1을 요구하며 ARM64 wheel 미지원
# 2.6.0은 paddlepaddle 2.x를 지원하여 ARM64 설치 가능
"paddleocr>=2.6.0,<2.7.0",
"pymupdf>=1.24.0",
"scikit-learn>=1.3.0",
"numpy>=1.24.0",
"Pillow>=10.0.0",
]
[project.scripts]
iiot-rag-mcp = "server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
only-include = ["server.py", "index_opc_docs.py"]