@baasix/mcp 0.1.2 → 0.1.4

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/README.md CHANGED
@@ -318,7 +318,7 @@ When using `baasix_list_items`, the `filter` parameter supports 50+ operators:
318
318
  {"createdAt": {"gte": "$NOW-DAYS_7"}} // 7 days ago
319
319
  ```
320
320
 
321
- For the complete list of 50+ operators, see the [Filter Reference](https://baasix.dev/docs/complete-filter-reference).
321
+ For the complete list of 50+ operators, see the [Filter Reference](https://baasix.dev/docs/guides/data/filtering).
322
322
 
323
323
  ## Package Usage
324
324
 
@@ -346,7 +346,7 @@ startMCPServer().catch((error) => {
346
346
  ## Links
347
347
 
348
348
  - **Baasix Website**: https://baasix.dev
349
- - **Documentation**: https://baasix.dev/docs/mcp-server-docs
349
+ - **Documentation**: https://baasix.dev/docs/extend/mcp
350
350
  - **GitHub**: https://github.com/baasix/baasix
351
351
  - **npm Package**: https://www.npmjs.com/package/@baasix/mcp
352
352
 
package/baasix/index.js CHANGED
@@ -959,7 +959,7 @@ AVAILABLE VARIABLES:
959
959
  },
960
960
  body: {
961
961
  type: "string",
962
- description: "Template body as HTML string or GrapesJS project JSON",
962
+ description: "Template body as HTML string with Liquid variables",
963
963
  },
964
964
  isActive: {
965
965
  type: "boolean",
package/bin/baasix-mcp.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  /**
4
4
  * Baasix MCP Server CLI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baasix/mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Model Context Protocol (MCP) server for Baasix Backend-as-a-Service - provides 40+ tools for schema management, CRUD operations with 50+ filter operators, relationships, permissions, files, workflows, and more",
5
5
  "type": "module",
6
6
  "main": "baasix/index.js",