wanzi-mcp-cursor 1.0.13__tar.gz

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.
Files changed (66) hide show
  1. wanzi_mcp_cursor-1.0.13/PKG-INFO +12 -0
  2. wanzi_mcp_cursor-1.0.13/__init__.py +1 -0
  3. wanzi_mcp_cursor-1.0.13/auth.py +731 -0
  4. wanzi_mcp_cursor-1.0.13/cli.py +105 -0
  5. wanzi_mcp_cursor-1.0.13/config.py +252 -0
  6. wanzi_mcp_cursor-1.0.13/database.py +674 -0
  7. wanzi_mcp_cursor-1.0.13/gui.py +326 -0
  8. wanzi_mcp_cursor-1.0.13/main.py +457 -0
  9. wanzi_mcp_cursor-1.0.13/pyproject.toml +35 -0
  10. wanzi_mcp_cursor-1.0.13/routes/__init__.py +1 -0
  11. wanzi_mcp_cursor-1.0.13/routes/auto_chat.py +140 -0
  12. wanzi_mcp_cursor-1.0.13/routes/marquee.py +32 -0
  13. wanzi_mcp_cursor-1.0.13/routes/mcp_sessions.py +762 -0
  14. wanzi_mcp_cursor-1.0.13/routes/public.py +367 -0
  15. wanzi_mcp_cursor-1.0.13/routes/user.py +1634 -0
  16. wanzi_mcp_cursor-1.0.13/services/__init__.py +1 -0
  17. wanzi_mcp_cursor-1.0.13/services/announcement_service.py +61 -0
  18. wanzi_mcp_cursor-1.0.13/services/auto_chat_service.py +1389 -0
  19. wanzi_mcp_cursor-1.0.13/services/backup_service.py +64 -0
  20. wanzi_mcp_cursor-1.0.13/services/client_management_service.py +748 -0
  21. wanzi_mcp_cursor-1.0.13/services/code_service.py +109 -0
  22. wanzi_mcp_cursor-1.0.13/services/cursor_import_service.py +247 -0
  23. wanzi_mcp_cursor-1.0.13/services/cursor_setup_service.py +1525 -0
  24. wanzi_mcp_cursor-1.0.13/services/cursor_token_validator.py +707 -0
  25. wanzi_mcp_cursor-1.0.13/services/email_verification_service.py +289 -0
  26. wanzi_mcp_cursor-1.0.13/services/error_report_service.py +86 -0
  27. wanzi_mcp_cursor-1.0.13/services/ip_geo_service.py +307 -0
  28. wanzi_mcp_cursor-1.0.13/services/local_security.py +53 -0
  29. wanzi_mcp_cursor-1.0.13/services/log_service.py +36 -0
  30. wanzi_mcp_cursor-1.0.13/services/login_policy_service.py +187 -0
  31. wanzi_mcp_cursor-1.0.13/services/marquee_service.py +185 -0
  32. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/__init__.py +98 -0
  33. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/__main__.py +81 -0
  34. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/_legacy_persistent_client.py +191 -0
  35. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/deleted_store.py +235 -0
  36. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/ipc_frame.py +63 -0
  37. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/mcp_server.py +664 -0
  38. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/message_queue.py +205 -0
  39. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/prompt.py +213 -0
  40. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/queue_io.py +493 -0
  41. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/session_meta_store.py +132 -0
  42. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/settings.py +237 -0
  43. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/snapshot.py +521 -0
  44. wanzi_mcp_cursor-1.0.13/services/mcp_bridge/tcp_bridge.py +381 -0
  45. wanzi_mcp_cursor-1.0.13/services/mcp_inject_service.py +2197 -0
  46. wanzi_mcp_cursor-1.0.13/services/mcp_loop_service.py +280 -0
  47. wanzi_mcp_cursor-1.0.13/services/mcp_service.py +487 -0
  48. wanzi_mcp_cursor-1.0.13/services/order_service.py +155 -0
  49. wanzi_mcp_cursor-1.0.13/services/room_quota_service.py +164 -0
  50. wanzi_mcp_cursor-1.0.13/services/room_service.py +1459 -0
  51. wanzi_mcp_cursor-1.0.13/services/settings_service.py +70 -0
  52. wanzi_mcp_cursor-1.0.13/services/token_monitor_service.py +105 -0
  53. wanzi_mcp_cursor-1.0.13/services/token_service.py +204 -0
  54. wanzi_mcp_cursor-1.0.13/services/trial_service.py +772 -0
  55. wanzi_mcp_cursor-1.0.13/services/user_account_service.py +609 -0
  56. wanzi_mcp_cursor-1.0.13/services/user_management_service.py +585 -0
  57. wanzi_mcp_cursor-1.0.13/services/version_service.py +96 -0
  58. wanzi_mcp_cursor-1.0.13/setup.cfg +4 -0
  59. wanzi_mcp_cursor-1.0.13/templates/app.html +8382 -0
  60. wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/PKG-INFO +12 -0
  61. wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/SOURCES.txt +121 -0
  62. wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/dependency_links.txt +1 -0
  63. wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/entry_points.txt +2 -0
  64. wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/requires.txt +6 -0
  65. wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/top_level.txt +1 -0
  66. wanzi_mcp_cursor-1.0.13/ws_handler.py +572 -0
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: wanzi-mcp-cursor
3
+ Version: 1.0.13
4
+ Summary: 丸子 MCP — Cursor AI 聊天持久化桌面客户端
5
+ License-Expression: MIT
6
+ Requires-Python: >=3.10
7
+ Requires-Dist: fastapi>=0.100
8
+ Requires-Dist: uvicorn[standard]>=0.20
9
+ Requires-Dist: pywebview>=4.0
10
+ Requires-Dist: requests>=2.28
11
+ Requires-Dist: pydantic>=2.0
12
+ Requires-Dist: mcp>=1.0
@@ -0,0 +1 @@
1
+ """wanzi-mcp — 丸子 MCP 桌面客户端。"""