loongclaw-devkit 0.2.2__tar.gz → 0.2.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: loongclaw-devkit
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: LoongClaw MCP 开发者工具包 — 一键创建、加密、打包、发布 MCP 插件
5
5
  Author: LoongClaw Team
6
6
  License-Expression: MIT
@@ -23,7 +23,7 @@ import zipfile
23
23
  from pathlib import Path
24
24
 
25
25
  # ── 常量 ──────────────────────────────────────────────────
26
- CLOUD_API_BASE = "https://yun.loongclaw.com"
26
+ CLOUD_API_BASE = "https://api.loongclaw.net.cn"
27
27
  UPLOAD_ENDPOINT = "/v1/store/upload"
28
28
  ENTRYPOINT = "server.py" # 入口文件,始终明文
29
29
  CONFIG_FILE = ".publish.json"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "loongclaw-devkit"
7
- version = "0.2.2"
7
+ version = "0.2.3"
8
8
  description = "LoongClaw MCP 开发者工具包 — 一键创建、加密、打包、发布 MCP 插件"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -23,7 +23,7 @@ import zipfile
23
23
  from pathlib import Path
24
24
 
25
25
  # ── 常量 ──────────────────────────────────────────────────
26
- CLOUD_API_BASE = "https://yun.loongclaw.com"
26
+ CLOUD_API_BASE = "https://api.loongclaw.net.cn"
27
27
  UPLOAD_ENDPOINT = "/v1/store/upload"
28
28
  ENTRYPOINT = "server.py" # 入口文件,始终明文
29
29
  CONFIG_FILE = ".publish.json"
@@ -252,7 +252,7 @@ def check_mcp_status(plugin_id: str = "", project_dir: str = "") -> str:
252
252
  if token:
253
253
  import urllib.request
254
254
  import urllib.error
255
- url = "https://yun.loongclaw.com/v1/store/mcp/registry.json"
255
+ url = "https://api.loongclaw.net.cn/v1/store/mcp/registry.json"
256
256
  req = urllib.request.Request(
257
257
  url, headers={"Authorization": f"Bearer {token}"},
258
258
  )