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.
- wanzi_mcp_cursor-1.0.13/PKG-INFO +12 -0
- wanzi_mcp_cursor-1.0.13/__init__.py +1 -0
- wanzi_mcp_cursor-1.0.13/auth.py +731 -0
- wanzi_mcp_cursor-1.0.13/cli.py +105 -0
- wanzi_mcp_cursor-1.0.13/config.py +252 -0
- wanzi_mcp_cursor-1.0.13/database.py +674 -0
- wanzi_mcp_cursor-1.0.13/gui.py +326 -0
- wanzi_mcp_cursor-1.0.13/main.py +457 -0
- wanzi_mcp_cursor-1.0.13/pyproject.toml +35 -0
- wanzi_mcp_cursor-1.0.13/routes/__init__.py +1 -0
- wanzi_mcp_cursor-1.0.13/routes/auto_chat.py +140 -0
- wanzi_mcp_cursor-1.0.13/routes/marquee.py +32 -0
- wanzi_mcp_cursor-1.0.13/routes/mcp_sessions.py +762 -0
- wanzi_mcp_cursor-1.0.13/routes/public.py +367 -0
- wanzi_mcp_cursor-1.0.13/routes/user.py +1634 -0
- wanzi_mcp_cursor-1.0.13/services/__init__.py +1 -0
- wanzi_mcp_cursor-1.0.13/services/announcement_service.py +61 -0
- wanzi_mcp_cursor-1.0.13/services/auto_chat_service.py +1389 -0
- wanzi_mcp_cursor-1.0.13/services/backup_service.py +64 -0
- wanzi_mcp_cursor-1.0.13/services/client_management_service.py +748 -0
- wanzi_mcp_cursor-1.0.13/services/code_service.py +109 -0
- wanzi_mcp_cursor-1.0.13/services/cursor_import_service.py +247 -0
- wanzi_mcp_cursor-1.0.13/services/cursor_setup_service.py +1525 -0
- wanzi_mcp_cursor-1.0.13/services/cursor_token_validator.py +707 -0
- wanzi_mcp_cursor-1.0.13/services/email_verification_service.py +289 -0
- wanzi_mcp_cursor-1.0.13/services/error_report_service.py +86 -0
- wanzi_mcp_cursor-1.0.13/services/ip_geo_service.py +307 -0
- wanzi_mcp_cursor-1.0.13/services/local_security.py +53 -0
- wanzi_mcp_cursor-1.0.13/services/log_service.py +36 -0
- wanzi_mcp_cursor-1.0.13/services/login_policy_service.py +187 -0
- wanzi_mcp_cursor-1.0.13/services/marquee_service.py +185 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/__init__.py +98 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/__main__.py +81 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/_legacy_persistent_client.py +191 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/deleted_store.py +235 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/ipc_frame.py +63 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/mcp_server.py +664 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/message_queue.py +205 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/prompt.py +213 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/queue_io.py +493 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/session_meta_store.py +132 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/settings.py +237 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/snapshot.py +521 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_bridge/tcp_bridge.py +381 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_inject_service.py +2197 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_loop_service.py +280 -0
- wanzi_mcp_cursor-1.0.13/services/mcp_service.py +487 -0
- wanzi_mcp_cursor-1.0.13/services/order_service.py +155 -0
- wanzi_mcp_cursor-1.0.13/services/room_quota_service.py +164 -0
- wanzi_mcp_cursor-1.0.13/services/room_service.py +1459 -0
- wanzi_mcp_cursor-1.0.13/services/settings_service.py +70 -0
- wanzi_mcp_cursor-1.0.13/services/token_monitor_service.py +105 -0
- wanzi_mcp_cursor-1.0.13/services/token_service.py +204 -0
- wanzi_mcp_cursor-1.0.13/services/trial_service.py +772 -0
- wanzi_mcp_cursor-1.0.13/services/user_account_service.py +609 -0
- wanzi_mcp_cursor-1.0.13/services/user_management_service.py +585 -0
- wanzi_mcp_cursor-1.0.13/services/version_service.py +96 -0
- wanzi_mcp_cursor-1.0.13/setup.cfg +4 -0
- wanzi_mcp_cursor-1.0.13/templates/app.html +8382 -0
- wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/PKG-INFO +12 -0
- wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/SOURCES.txt +121 -0
- wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/dependency_links.txt +1 -0
- wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/entry_points.txt +2 -0
- wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/requires.txt +6 -0
- wanzi_mcp_cursor-1.0.13/wanzi_mcp_cursor.egg-info/top_level.txt +1 -0
- 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 桌面客户端。"""
|