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_type on inputs such as CreateTableFieldInput / UpdateTableFieldInput, debug=true on mutations.
  • Pagination: get_table_records and find_records support first / after. With the unified MCP envelope, read top-level pagination.has_more and pagination.end_cursor (and pagination.page_size) and pass after=end_cursor for the next page (default page size is 50).
  • find_records over paginated get_table_records when you know the field value. One find_records call with a column_id/search_value filter beats N pages of get_table_records.
  • Legacy mutation envelope. Several table mutation tools still return the GraphQL operation name as a nested key under result (for example result.createTableRecord). Read the payload inside that key; shape may differ from tools that already use the unified envelope.

Table operations

Installs
293
GitHub Stars
45
First Seen
Jun 2, 2026
pipefy-database-tables — pipefy/ai-toolkit