feat: expose win helper via mcp real lab

This commit is contained in:
zhaoyilun
2026-07-05 14:52:23 +08:00
parent f2dd1c7e57
commit 573a09ade3
23 changed files with 6322 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[project]
name = "isphere-ai-bridge"
version = "0.1.0"
description = "Read-only iSphere MCP service for AI digital employees"
requires-python = ">=3.10"
dependencies = ["mcp==1.28.1"]
[project.scripts]
isphere-ai-bridge = "isphere_ai_bridge.cli:main"
isphere-ai-bridge-mcp = "isphere_ai_bridge.server:main"
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]