@xano/developer-mcp 1.0.37 → 1.0.38

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.
@@ -166,6 +166,15 @@ The `size` parameter specifies the vector dimensions (must match your embedding
166
166
 
167
167
  ## Indexes
168
168
 
169
+ Each index field supports an optional `op` property to control sort order or operator class:
170
+
171
+ | Index Type | `op` Values | Default | Description |
172
+ |------------|-------------|---------|-------------|
173
+ | `btree` | `asc`, `desc` | `asc` | Sort direction |
174
+ | `gin` | `jsonb_path_op` | — | Operator class for JSON containment queries |
175
+ | `search` | `A`, `B`, `C`, `D` | — | Weight category (A = highest relevance) |
176
+ | `vector` | `vector_cosine_ops` | — | Distance function for similarity search |
177
+
169
178
  ### Primary Key
170
179
 
171
180
  ```xs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xano/developer-mcp",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "description": "MCP server and library for Xano development - XanoScript validation, Meta API, Run API, and CLI documentation",
5
5
  "type": "module",
6
6
  "main": "dist/lib.js",