iflow-mcp_cwahlfeldt_blender-mcp 0.1.2__py3-none-any.whl → 0.1.3__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.
- {iflow_mcp_cwahlfeldt_blender_mcp-0.1.2.dist-info → iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info}/METADATA +1 -1
- {iflow_mcp_cwahlfeldt_blender_mcp-0.1.2.dist-info → iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info}/RECORD +5 -5
- iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info/entry_points.txt +2 -0
- server.py +5 -2
- iflow_mcp_cwahlfeldt_blender_mcp-0.1.2.dist-info/entry_points.txt +0 -2
- {iflow_mcp_cwahlfeldt_blender_mcp-0.1.2.dist-info → iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info}/WHEEL +0 -0
|
@@ -3,12 +3,12 @@ blender/executor.py,sha256=UbrmYIXjNloWEkUMtsgOoeVqvrtnLtztcbWtvUxD9tU,5464
|
|
|
3
3
|
blender/uv_tools.py,sha256=anfOL3hW1fZdPTi1LDA2nMC123hCx95rvQfKer_nBrY,11658
|
|
4
4
|
scripts/__init__.py,sha256=x78bZpSWEjokJ24WqB-bvGAx3PnvixRCZ4xzWgmORBo,32
|
|
5
5
|
scripts/manager.py,sha256=06f5O8rCex-jDBMdxuEHEaq5SHFwPojOYnrIPBItVT0,6122
|
|
6
|
-
server.py,sha256=
|
|
6
|
+
server.py,sha256=tSYnTyeo9DPxwpoJxs1HVsgSNF2wVK7UfmEJKYN8s_g,2715
|
|
7
7
|
utils/__init__.py,sha256=XkLKwxjypuJhs2A-RPst7CZ1G_tWfvdHwFFFtZTjAQI,30
|
|
8
8
|
utils/helpers.py,sha256=EZkvfxRBFdr5Jm8Niwzikqv5QmR3WkIE2_MFvusRNqk,5452
|
|
9
9
|
utils/uv_integration.py,sha256=FQuhOTPPRxeUPZWYwGwLEQbkj10gKx-sg0ushKfRPt4,8630
|
|
10
10
|
utils/uv_manager.py,sha256=OCj8r3g6SPj-jHh-zti6H6EKubRkF8OLiCBAlzuARuY,1964
|
|
11
|
-
iflow_mcp_cwahlfeldt_blender_mcp-0.1.
|
|
12
|
-
iflow_mcp_cwahlfeldt_blender_mcp-0.1.
|
|
13
|
-
iflow_mcp_cwahlfeldt_blender_mcp-0.1.
|
|
14
|
-
iflow_mcp_cwahlfeldt_blender_mcp-0.1.
|
|
11
|
+
iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info/METADATA,sha256=hSDgvOHurIbPrjkECXRtO5d25ABuLyvyuajYB1Ubfm8,3124
|
|
12
|
+
iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
13
|
+
iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info/entry_points.txt,sha256=d_e82FocVD1T_CXkAGSCEKqf6clk_f0BCIULifO_E3M,44
|
|
14
|
+
iflow_mcp_cwahlfeldt_blender_mcp-0.1.3.dist-info/RECORD,,
|
server.py
CHANGED
|
@@ -82,6 +82,9 @@ def remove_script(name: str) -> str:
|
|
|
82
82
|
except Exception as e:
|
|
83
83
|
return f"Error removing script: {str(e)}"
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
def main():
|
|
86
|
+
"""Main entry point for the MCP server"""
|
|
87
87
|
mcp.run()
|
|
88
|
+
|
|
89
|
+
if __name__ == "__main__":
|
|
90
|
+
main()
|
|
File without changes
|