create-database-row
bởi notion
Chèn một hàng mới vào cơ sở dữ liệu Notion đã chỉ định bằng cách sử dụng giá trị thuộc tính ngôn ngữ tự nhiên. Xử lý việc khớp và xác thực tên thuộc tính.
npx skills add https://github.com/makenotion/cursor-notion-plugin --skill create-database-rowCreate Database Row
Use the Notion MCP server to insert a new row into a Notion database.
Workflow
- Interpret the request to extract:
- Target database (by name or ID)
- A set of properties expressed as
key=valuepairs (e.g. "Severity=High Owner=Alice Status=Open").
- Resolve the database:
- If multiple matches, ask the user to choose.
- Map the provided keys to the database's actual property names, handling minor naming differences.
- Validate required properties:
- If a required property is missing, ask the user for the value before creating the row.
- Create the row and confirm with:
- The resolved database name
- The new row's key properties
- A link or identifier.
Important
Be robust to capitalization and spacing in property names. Explain any properties you had to infer or skip.