@xano/developer-mcp 1.0.59 → 1.0.60

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.
@@ -193,6 +193,9 @@ Use `xanoscript_docs({ tier: "survival" })` or `xanoscript_docs({ tier: "working
193
193
  | ------------ | ---------------------------------------------------- | ------------ |
194
194
  | `essentials` | Common patterns, quick examples, mistakes to avoid | Patterns, Common Mistakes |
195
195
  | `syntax` | Expressions, operators, filters, system variables | Filters, Error Handling |
196
+ | `syntax/string-filters` | String manipulation filters | Case, Trim, Split, Replace |
197
+ | `syntax/array-filters` | Array manipulation filters | Map, Filter, Sort, Group |
198
+ | `syntax/functions` | Built-in functions | Math, Date, Crypto, JSON |
196
199
  | `types` | Data types, validation, input blocks | Validation Filters, Input Blocks |
197
200
  | `functions` | Reusable function stacks, async, loops | Loops, Async Patterns |
198
201
  | `schema` | Runtime schema parsing and validation | parse.object, parse.array |
@@ -227,7 +230,7 @@ Use `xanoscript_docs({ tier: "survival" })` or `xanoscript_docs({ tier: "working
227
230
 
228
231
  | Topic | Description | Sub-topics |
229
232
  | -------------- | ------------------------------------------------- | ---------- |
230
- | `integrations` | Cloud storage, Redis, security, and external APIs | cloud-storage, search, redis, external-apis, utilities |
233
+ | `integrations` | Cloud storage, Redis, security, and external APIs | integrations/cloud-storage, integrations/search, integrations/redis, integrations/external-apis, integrations/utilities |
231
234
 
232
235
  ### Configuration
233
236
 
@@ -236,3 +236,13 @@ project/
236
236
  1. **Use descriptive colors** - Green for production, blue for development, yellow for staging
237
237
  2. **Limit production history** - Excessive history impacts performance and storage
238
238
  3. **Apply security middleware in production** - Rate limiting, auth checks, audit logging
239
+
240
+ ---
241
+
242
+ ## Related Topics
243
+
244
+ | Topic | Description |
245
+ |-------|-------------|
246
+ | `workspace` | Workspace-level configuration |
247
+ | `middleware` | Request/response interceptors |
248
+ | `security` | Authentication and rate limiting |
@@ -77,3 +77,13 @@ View past request executions in the Xano dashboard:
77
77
 
78
78
  1. **Remove debug.stop in production** - Causes execution to halt
79
79
  2. **Don't log sensitive data** - Passwords, tokens, PII
80
+
81
+ ---
82
+
83
+ ## Related Topics
84
+
85
+ | Topic | Description |
86
+ |-------|-------------|
87
+ | `performance` | Performance profiling and optimization |
88
+ | `unit-testing` | Unit testing functions |
89
+ | `workflow-tests` | End-to-end workflow testing |
@@ -472,4 +472,4 @@ Explore more with `xanoscript_docs({ topic: "<topic>" })`:
472
472
  | `syntax` | Expressions, operators, and control flow |
473
473
  | `essentials` | Common patterns and examples |
474
474
  | `database` | Database operations in function stacks |
475
- | `testing` | Unit testing functions |
475
+ | `unit-testing` | Unit testing functions |
@@ -304,3 +304,14 @@ branch "production" {
304
304
  1. **Keep middleware focused** - Each middleware should do one thing well
305
305
  2. **Use appropriate exception policies** - Critical for security, silent for optional enrichment
306
306
  3. **Consider performance** - Middleware runs on every request; log even silent failures
307
+
308
+ ---
309
+
310
+ ## Related Topics
311
+
312
+ | Topic | Description |
313
+ |-------|-------------|
314
+ | `branch` | Branch-level middleware configuration |
315
+ | `security` | Authentication and authorization patterns |
316
+ | `apis` | API endpoint request/response lifecycle |
317
+ | `performance` | Performance optimization strategies |
@@ -295,3 +295,13 @@ Clients subscribe to channels client-side. Server controls what events to send.
295
295
  1. **Use channel namespacing** - `type:id` format for clarity
296
296
  2. **Keep payloads small** - Send IDs, let client fetch details
297
297
  3. **Validate before broadcast** - Don't trust client event data
298
+
299
+ ---
300
+
301
+ ## Related Topics
302
+
303
+ | Topic | Description |
304
+ |-------|-------------|
305
+ | `workspace` | Realtime configuration settings |
306
+ | `security` | Authorization patterns for channels |
307
+ | `frontend` | Client-side realtime integration |
@@ -288,3 +288,13 @@ try_catch {
288
288
  1. **Define schemas upfront** - Use input blocks when structure is known
289
289
  2. **Use schema.parse for dynamic data** - External APIs, user-generated content
290
290
  3. **Validate at boundaries** - Parse external input, trust internal data; provide clear error messages
291
+
292
+ ---
293
+
294
+ ## Related Topics
295
+
296
+ | Topic | Description |
297
+ |-------|-------------|
298
+ | `types` | Data types and input validation |
299
+ | `integrations/external-apis` | Parsing external API responses |
300
+ | `syntax` | Expressions and filters |
@@ -158,4 +158,4 @@ input {
158
158
 
159
159
  ### Available Topics
160
160
 
161
- essentials, syntax, types, database, functions, apis, tables, tasks, triggers, agents, tools, mcp-servers, security, performance, debugging, unit-testing, workflow-tests, middleware, addons, realtime, streaming, schema, integrations, workspace, branch, run, frontend
161
+ survival, working, readme, essentials, syntax, syntax/string-filters, syntax/array-filters, syntax/functions, types, database, functions, apis, tables, tasks, triggers, agents, tools, mcp-servers, security, performance, debugging, unit-testing, workflow-tests, middleware, addons, realtime, streaming, schema, integrations, integrations/cloud-storage, integrations/search, integrations/redis, integrations/external-apis, integrations/utilities, workspace, branch, run, frontend
@@ -207,3 +207,13 @@ These variables are automatically available without configuration:
207
207
  1. **Never commit secrets** - Use environment variables for API keys and credentials
208
208
  2. **Use descriptive names** - Environment variable names should be self-documenting
209
209
  3. **Enable performance tracking** - Helps identify bottlenecks in production
210
+
211
+ ---
212
+
213
+ ## Related Topics
214
+
215
+ | Topic | Description |
216
+ |-------|-------------|
217
+ | `branch` | Branch-level configuration |
218
+ | `realtime` | Realtime channel configuration |
219
+ | `security` | Environment variable security practices |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xano/developer-mcp",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
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",