@xano/developer-mcp 1.0.17 → 1.0.18

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.
@@ -60,6 +60,17 @@ input {
60
60
  }
61
61
  ```
62
62
 
63
+ **Empty Input Blocks:** When an input block has no parameters, the braces must be on separate lines:
64
+
65
+ ```xs
66
+ // Correct
67
+ input {
68
+ }
69
+
70
+ // Incorrect - will cause errors
71
+ input {}
72
+ ```
73
+
63
74
  Access inputs in stack: `$input.username`, `$input.age`
64
75
 
65
76
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xano/developer-mcp",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "MCP server for Xano Headless API documentation and XanoScript code validation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",