icode-mcp-adapter 1.0.11 → 1.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "icode-mcp-adapter",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Dynamic MCP server adapter — auto-generates CRUD tools from schema configs. Plugs into icode-server via Fastify or runs standalone.",
5
5
  "type": "module",
6
6
  "main": "src/engine/McpEngine.js",
@@ -45,6 +45,13 @@ const META_FIELDS = new Set([
45
45
  '_by', // who last modified
46
46
  '_deleted', // soft delete flag
47
47
  'pk', // auto-increment secondary key
48
+ '_tenantId', // tenant marker (stamped by the host writer)
49
+ '_tzo', // timezone offset
50
+ '_vno', // version number
51
+ '_tag', // internal tagging
52
+ 'org', // org partition
53
+ 'settings', // per-row system settings json
54
+ 'entitytype', // entity type marker (system-set)
48
55
  ]);
49
56
 
50
57
  // ── Schema cache ─────────────────────────────────────────────────────────────