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.
Files changed (2) hide show
  1. package/index.js +5 -0
  2. 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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "random-video-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server学习,日志打点",
5
5
  "type": "module",
6
6
  "main": "index.js",