NocoDB API
ReviewAudited by ClawScan on May 10, 2026.
Overview
This appears to be a straightforward NocoDB API wrapper, but it gives the agent powerful access to read, change, delete, and administer NocoDB data using your token.
Install only if you are comfortable giving the agent NocoDB API access. Use a dedicated, least-privilege token, verify the NOCODB_URL, and require manual confirmation before any delete, bulk update, schema, member, token, attachment, script, or automation action.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If the agent runs the wrong command, it could change or delete business data or alter account/team access in NocoDB.
The skill intentionally exposes high-impact NocoDB operations, including data deletion, schema changes, team administration, and token lifecycle management.
- ➕ **Create, update, delete** records programmatically - 📊 **Manage database structure** (tables, fields, views) - 👥 **Handle team collaboration** (Enterprise plans) - 🔐 **Manage API tokens** (Enterprise plans)
Use a least-privilege NocoDB token and instruct the agent to ask for confirmation before deletes, bulk updates, schema changes, member changes, token changes, or automation triggers.
The agent can act with whatever permissions the supplied NocoDB token has.
The script uses the NOCODB_TOKEN as an API credential and sends it as the xc-token header to the configured NocoDB API endpoint.
NC_TOKEN="${NOCODB_TOKEN:-}"
... _get() { curl -sS -H "xc-token: $NC_TOKEN" "$NC_URL/api/v3/$1"; }Create a dedicated token with only the permissions needed for the intended task, rotate it if exposed, and verify NOCODB_URL points to the intended NocoDB instance.
Users have less external context for verifying who maintains the skill or comparing the packaged script against an upstream project.
The registry metadata does not identify a source repository or homepage for provenance review.
Source: unknown Homepage: none
Review the included script before use and prefer installing from a package with a clear repository, maintainer, and release history.
