- Python: ruff --fix 修復 280 個 lint 錯誤 - lewooogo-core: src/ 目錄未追蹤,導致 CI eslint 失敗 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
308 B
Python
21 lines
308 B
Python
"""
|
|
MCP (Model Context Protocol) Integration
|
|
Phase 3: 企業功能 - AI 與外部工具橋樑
|
|
"""
|
|
|
|
from .mcp_bridge import (
|
|
MCPBridge,
|
|
MCPServer,
|
|
MCPTool,
|
|
MCPToolResult,
|
|
mcp_bridge,
|
|
)
|
|
|
|
__all__ = [
|
|
"MCPBridge",
|
|
"mcp_bridge",
|
|
"MCPTool",
|
|
"MCPToolResult",
|
|
"MCPServer",
|
|
]
|