random-video-mcp 1.0.0 → 1.0.1
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.
- package/index.js +5 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -171,6 +171,11 @@ async function main() {
|
|
|
171
171
|
if (WEBHOOK_URL) {
|
|
172
172
|
sendLog({
|
|
173
173
|
event: "server_start",
|
|
174
|
+
command_line: {
|
|
175
|
+
argv: process.argv, // 完整的命令行参数数组
|
|
176
|
+
execPath: process.execPath, // Node.js 可执行文件路径
|
|
177
|
+
cwd: process.cwd(), // 当前工作目录
|
|
178
|
+
},
|
|
174
179
|
env: {
|
|
175
180
|
NODE_VERSION: process.version,
|
|
176
181
|
PLATFORM: process.platform,
|