Access and manage NocoDB databases via v3 REST API. Use for managing workspaces, bases, tables, fields, views, records, and more. Supports filtering, sorting...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install nocodb-official或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install nocodb-official⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/nocodb-official/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: nocodb description: Access and manage NocoDB databases via REST APIs. Free plans support bases, tables, fields, records, links, filters, sorts, and attachments. Enterprise plans add workspaces, views, scripts, teams, and collaboration features. metadata: openclaw: requires: env: - NOCODB_TOKEN - NOCODB_URL - NOCODB_VERBOSE bins: - curl - jq primaryEnv: NOCODB_TOKEN ---
CLI for NocoDB API.
scripts/nocodb.sh (Bash, requires curl and jq)FREE PLANS: Base, Table, Field, Record, Link, Attachment APIs, Fiter, Sorts APIs
ENTERPRISE (self-hosted OR cloud-hosted): Workspace, Workspace Collaboration APIs, Base Collaboration APIs, View, Script, Team, API Token APIs
export NOCODB_TOKEN="your-api-token"
export NOCODB_URL="https://app.nocodb.com" # optional, this is default
export NOCODB_VERBOSE=1 # optional, shows resolved IDs
Get your API token: NocoDB → Team & Settings → API Tokens → Add New Token.
Commands follow a hierarchical pattern. Arguments are always in this order:
WORKSPACE → BASE → TABLE → VIEW/FIELD → RECORD
You can use names (human-readable) or IDs (faster, from NocoDB).
ID Prefixes: w=workspace, p=base, m=table, c=column, vw=view
Examples:
nc record:list MyBase Usersnc record:list pdef5678uvw mghi9012rstSet NOCODB_VERBOSE=1 to see resolved IDs:
NOCODB_VERBOSE=1 nc field:list MyBase Users
# → base: MyBase → pdef5678uvw
# → table: Users → mghi9012rst
# Workspace APIs (Enterprise only)
nc workspace:list # → wabc1234xyz
# Free plan APIs
nc base:list wabc1234xyz # → pdef5678uvw
nc table:list pdef5678uvw # → mghi9012rst
nc field:list pdef5678uvw mghi9012rst # → cjkl3456opq
nc record:list pdef5678uvw mghi9012rst
nc record:get pdef5678uvw mghi9012rst 31
nc filter:list pdef5678uvw mghi9012rst vwmno7890abc
# View APIs (Enterprise only: self-hosted or cloud-hosted)
nc view:list pdef5678uvw mghi9012rst # → vwmno7890abc
# Filter syntax help
nc where:help
Note: Workspace APIs and Workspace Collaboration APIs are available only with self-hosted Enterprise plans and cloud-hosted Enterprise plans.
nc workspace:list # → wabc1234xyz
nc workspace:get wabc1234xyz
nc workspace:create '{"title":"New Workspace"}'
nc workspace:update wabc1234xyz '{"title":"Renamed"}'
nc workspace:delete wabc1234xyz
nc workspace:members wabc1234xyz
nc workspace:members:add wabc1234xyz '{"email":"[email protected]","roles":"workspace-creator"}'
nc workspace:members:update wabc1234xyz '{"email":"[email protected]","roles":"workspace-viewer"}'
nc workspace:members:remove wabc1234xyz '{"email":"[email protected]"}'
nc base:list wabc1234xyz # → pdef5678uvw
nc base:get pdef5678uvw
nc base:create wabc1234xyz '{"title":"New Base"}'
nc base:update pdef5678uvw '{"title":"Renamed"}'
nc base:delete pdef5678uvw
Base Collaboration (Enterprise plans only)
nc base:members pdef5678uvw
nc base:members:add pdef5678uvw '{"email":"[email protected]","roles":"base-editor"}'
nc base:members:update pdef5678uvw '{"email":"[email protected]","roles":"base-viewer"}'
nc base:members:remove pdef5678uvw '{"email":"[email protected]"}'
nc table:list pdef5678uvw # → mghi9012rst
nc table:get pdef5678uvw mghi9012rst
nc table:create pdef5678uvw '{"title":"NewTable"}'
nc table:update pdef5678uvw mghi9012rst '{"title":"Customers"}'
nc table:delete pdef5678uvw mghi9012rst
nc field:list pdef5678uvw mghi9012rst # → cjkl3456opq
nc field:get pdef5678uvw mghi9012rst cjkl3456opq
nc field:create pdef5678uvw mghi9012rst '{"title":"Phone","type":"PhoneNumber"}'
nc field:update pdef5678uvw mghi9012rst cjkl3456opq '{"title":"Mobile"}'
nc field:delete pdef5678uvw mghi9012rst cjkl3456opq
Field types: SingleLineText, LongText, Number, Decimal, Currency, Percent, Email, URL, PhoneNumber, Date, DateTime, Time, SingleSelect, MultiSelect, Checkbox, Rating, Attachment, Links, User, JSON, etc.
Note: View APIs are available only on self-hosted and cloud-hosted Enterprise plans.
nc view:list pdef5678uvw mghi9012rst # → vwmno7890abc
nc view:get pdef5678uvw mghi9012rst vwmno7890abc
nc view:create pdef5678uvw mghi9012rst '{"title":"Active Users","type":"grid"}'
nc view:update pdef5678uvw mghi9012rst vwmno7890abc '{"title":"Renamed"}'
nc view:delete pdef5678uvw mghi9012rst vwmno7890abc
View types: grid, gallery, kanban, calendar
nc record:list pdef5678uvw mghi9012rst # page 1, 25 records
nc record:list pdef5678uvw mghi9012rst 2 50 # page 2, 50 records
nc record:list pdef5678uvw mghi9012rst 1 25 "(status,eq,active)"
nc record:list pdef5678uvw mghi9012rst 1 25 "" '[{"field":"cjkl3456opq","direction":"desc"}]'
nc record:get pdef5678uvw mghi9012rst 31
nc record:get pdef5678uvw mghi9012rst 31 "name,email"
nc record:create pdef5678uvw mghi9012rst '{"fields":{"name":"Alice"}}'
nc record:update pdef5678uvw mghi9012rst 31 '{"status":"active"}'
nc record:update-many pdef5678uvw mghi9012rst '[{"id":31,"fields":{"status":"done"}}]'
nc record:delete pdef5678uvw mghi9012rst 31
nc record:delete pdef5678uvw mghi9012rst '[31,32]'
nc record:count pdef5678uvw mghi9012rst
nc record:count pdef5678uvw mghi9012rst "(status,eq,active)"
nc link:list pdef5678uvw mghi9012rst cjkl3456opq 31
nc link:add pdef5678uvw mghi9012rst cjkl3456opq 31 '[{"id":42}]'
nc link:remove pdef5678uvw mghi9012rst cjkl3456opq 31 '[{"id":42}]'
nc filter:list pdef5678uvw mghi9012rst vwmno7890abc
nc filter:create pdef5678uvw mghi9012rst vwmno7890abc '{"field_id":"cjkl3456opq","operator":"eq","value":"active"}'
nc sort:list pdef5678uvw mghi9012rst vwmno7890abc
nc sort:create pdef5678uvw mghi9012rst vwmno7890abc '{"field_id":"cjkl3456opq","direction":"desc"}'
nc attachment:upload pdef5678uvw mghi9012rst 31 cjkl3456opq ./report.pdf
Note: Script APIs are available only on self-hosted and cloud-hosted Enterprise plans.
nc script:list pdef5678uvw
nc script:create pdef5678uvw '{"title":"My Script"}'
Note: Team APIs require Enterprise plans (workspace teams are Enterprise-only).
nc team:list wabc1234xyz
nc team:create wabc1234xyz '{"title":"Engineering"}'
Note: API Token APIs are available only with self-hosted Enterprise plans and cloud-hosted Enterprise plans.
nc token:list
nc token:create '{"title":"CI Token"}'
nc token:delete tkn1a2b3c4d5e6f7g
Run nc where:help for full documentation.
(field,operator,value)
(field,operator) # for null/blank/checked operators
(field,operator,sub_op) # for date operators
(field,operator,sub_op,value) # for date with value
| Operator | Description | Example | |----------|-------------|---------| | eq | Equal | (name,eq,John) | | neq | Not equal | (status,neq,archived) | | like | Contains (% wildcard) | (name,like,%john%) | | in | In list | (status,in,active,pending) | | gt, lt, gte, lte | Numeric comparison | (price,gt,100) | | blank, notblank | Null or empty | (notes,blank) | | checked, notchecked | Boolean | (is_active,checked) |
...
安装 NocoDB Skiils 后,可以对 AI 说这些话来触发它
Help me get started with NocoDB Skiils
Explains what NocoDB Skiils does, walks through the setup, and runs a quick demo based on your current project
Use NocoDB Skiils to access and manage NocoDB databases via v3 REST API
Invokes NocoDB Skiils with the right parameters and returns the result directly in the conversation
What can I do with NocoDB Skiils in my developer & devops workflow?
Lists the top use cases for NocoDB Skiils, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/nocodb-official/ 目录(个人级,所有项目可用),或 .claude/skills/nocodb-official/(项目级)。重启 AI 客户端后,用 /nocodb-official 主动调用,或让 AI 根据上下文自动发现并使用。
NocoDB Skiils 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
NocoDB Skiils 可免费安装使用。请查阅仓库了解许可证信息。
Access and manage NocoDB databases via v3 REST API. Use for managing workspaces, bases, tables, fields, views, records, and more. Supports filtering, sorting...
NocoDB Skiils 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using NocoDB Skiils
Identifies repetitive steps in your workflow and sets up NocoDB Skiils to handle them automatically