devlake-mcp 0.4.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ """
2
+ DevLake MCP Server
3
+
4
+ 一个用于 DevLake 的 Model Context Protocol 服务器。
5
+ """
6
+
7
+ __version__ = "0.4.1"
@@ -0,0 +1,10 @@
1
+ """
2
+ MCP 服务器入口点
3
+
4
+ 当使用 python -m devlake_mcp 或通过 pipx 安装后运行时会调用此文件。
5
+ """
6
+
7
+ from devlake_mcp.server import main
8
+
9
+ if __name__ == "__main__":
10
+ main()