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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iflow-mcp_cwahlfeldt_blender-mcp
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: MCP server for executing Blender scripts
5
5
  Author: Blender MCP Team
6
6
  Requires-Python: >=3.11
@@ -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=xRUhK_CfF5ad0Oy0guZOnHLAKe-C0NSthzXCcmNv-kc,2667
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.2.dist-info/METADATA,sha256=obc7DBI8vPKns1UUIRnxcQE2dzAj6MWmGomAI53Zb2w,3124
12
- iflow_mcp_cwahlfeldt_blender_mcp-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
13
- iflow_mcp_cwahlfeldt_blender_mcp-0.1.2.dist-info/entry_points.txt,sha256=QnyWp9XwL2dm3qqSZH1WdCgLZQ0nkmTBgsRJ1wRM3Xc,43
14
- iflow_mcp_cwahlfeldt_blender_mcp-0.1.2.dist-info/RECORD,,
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,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ blender-mcp = server:main
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
- if __name__ == "__main__":
86
- # Run the server
85
+ def main():
86
+ """Main entry point for the MCP server"""
87
87
  mcp.run()
88
+
89
+ if __name__ == "__main__":
90
+ main()
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- blender-mcp = server:mcp