Loading...
Loading...
Notion integration. Manage project management and document management data, records, and workflows. Use when the user wants to interact with Notion data.
npx skill4agent add membranedev/application-skills notionmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search notion --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| Query Database | query-database | Queries a database and returns pages that match the filter and sort criteria. |
| Get Page | get-page | Retrieves a page by its ID. |
| Get Database | get-database | Retrieves a database object by its ID. |
| Get Block Children | get-block-children | Retrieves the children blocks of a block or page. |
| Get Block | get-block | Retrieves a block object by its ID. |
| List Users | list-users | Lists all users in the workspace. |
| Search | search | Searches all pages and databases that have been shared with the integration. |
| Create Page | create-page | Creates a new page as a child of an existing page or database. |
| Create Database | create-database | Creates a database as a child of an existing page. |
| Create Comment | create-comment | Creates a comment on a page or in an existing discussion thread. |
| Update Page | update-page | Updates page properties, icon, cover, or archived status. |
| Update Database | update-database | Updates database title, description, properties schema, or icon/cover. |
| Update Block | update-block | Updates the content or properties of an existing block. |
| Append Block Children | append-block-children | Appends new children blocks to an existing block or page. |
| Delete Block | delete-block | Deletes (archives) a block. |
| Archive Page | archive-page | Archives (trashes) a page by setting its archived property to true. |
| Restore Page | restore-page | Restores an archived page by setting its archived property to false. |
| Get User | get-user | Retrieves a user by their ID. |
| List Comments | list-comments | Lists all comments on a page or block. |
| Get Page Property | get-page-property | Retrieves a specific property value from a page. |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY