dingtalk-mcp 1.0.9 → 1.0.10

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.
@@ -405,6 +405,7 @@ export class DingTalkMCPServer {
405
405
  if (arg.position === 'body' && args[arg.name] !== undefined) {
406
406
  // 系统参数,从环境变量读取
407
407
  if (arg.system) {
408
+ console.error(`System parameter ${arg.system} , ${arg.name} ${process.env[arg.system]}`);
408
409
  if (!process.env[arg.system]){
409
410
  throw new Error(`System parameter ${arg.system} is required, please check your environment variables`);
410
411
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dingtalk-mcp",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "DingTalk MCP Server - A TypeScript-based MCP server for DingTalk integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",