一键导入
n8n-tables
Manage n8n data tables — list, create, delete, query/insert/update/delete rows
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage n8n data tables — list, create, delete, query/insert/update/delete rows
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage n8n credentials — list, create, update, delete, schema, transfer
Manage n8n executions — list, get, delete, retry, stop
n8n workflow automation knowledge base. Provides node documentation for 542 built-in and community nodes, workflow patterns, templates, and configuration examples. Covers triggers, data transformation, data input/output, AI integration. Keywords: n8n, workflow, automation, node, trigger, webhook, http request, database, ai agent.
Manage n8n workflows — list, get, create, update, delete, activate, deactivate, transfer, tags
Run a security audit on the n8n instance
Manage n8n projects — list, create, update, delete, manage users
| name | n8n-tables |
| description | Manage n8n data tables — list, create, delete, query/insert/update/delete rows |
| argument-hint | action, e.g. list or rows TABLE_ID --search text |
Interact with n8n data tables via CLI. Run commands with uv run n8n_cli.py tables <action>.
tables list
tables get <id>
tables create <json> # {"name": "...", "columns": [{"name": "...", "type": "string|number|boolean|date"}]}
tables update <id> <name>
tables delete <id>
tables rows <id> [--filter JSON] [--sort-by "col:asc"] [--search "text"]
tables insert-rows <id> <json> # {"data": [...], "returnType": "all|count|id"}
tables update-rows <id> <json> # {"filter": {...}, "data": {...}}
tables upsert-row <id> <json> # {"filter": {...}, "data": {...}}
tables delete-rows <id> <filter-json>
For JSON schemas, read docs/n8n_openapi.yml and look for createDataTableRequest, insertRowsRequest, etc.
Present results in a clean readable format. $ARGUMENTS