pipefy-database-tables
Installation
SKILL.md
Database Tables
Tables, records (rows), schema columns (table fields), and attachments for Pipefy Database Tables. 17 MCP tools.
Cross-cutting patterns
- Same conventions as pipe building:
introspect_typeon inputs such asCreateTableFieldInput/UpdateTableFieldInput,debug=trueon mutations. - Pagination:
get_table_recordsandfind_recordssupportfirst/after. With the unified MCP envelope, read top-levelpagination.has_moreandpagination.end_cursor(andpagination.page_size) and passafter=end_cursorfor the next page (default page size is 50). find_recordsover paginatedget_table_recordswhen you know the field value. Onefind_recordscall with acolumn_id/search_valuefilter beats N pages ofget_table_records.- Legacy mutation envelope. Several table mutation tools still return the GraphQL operation name as a nested key under
result(for exampleresult.createTableRecord). Read the payload inside that key; shape may differ from tools that already use the unified envelope.