@mondaydotcomorg/monday-api-mcp 0.1.5 → 0.1.6

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.
@@ -49,6 +49,12 @@ export function validateArgs(parsedArgs) {
49
49
  });
50
50
  process.exit(1);
51
51
  }
52
- // At this point, all required args are present, so we can safely cast
53
- return parsedArgs;
52
+ const typedArgs = { ...parsedArgs };
53
+ ARG_CONFIGS.forEach((config) => {
54
+ if (typeof config.defaultValue === 'boolean' && parsedArgs[config.name] !== undefined) {
55
+ const stringValue = parsedArgs[config.name];
56
+ typedArgs[config.name] = stringValue.toLowerCase() === 'true';
57
+ }
58
+ });
59
+ return typedArgs;
54
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mondaydotcomorg/monday-api-mcp",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "MCP server for using the monday.com API",
5
5
  "license": "MIT",
6
6
  "type": "module",