Tool Name | Platform | Description |
---|---|---|
Airtable Find Bases | Airtable | Find available bases in Airtable |
Airtable Find Tables | Airtable | Find tables within a specific base |
Airtable Find Records | Airtable | Search for records in a table |
Airtable Create Records | Airtable | Create new records in a table |
Airtable Update Records | Airtable | Update existing records |
Airtable Delete Records | Airtable | Delete records from a table |
Notion Find Databases | Notion | Search for databases in Notion |
Notion Create Database Item | Notion | Create new items in a Notion database |
airtable_find_bases
Arguments:
Name | Required | Type | Description |
---|---|---|---|
offset | Optional | string | Offset for getting the next page of results when iterating over pages |
airtable_find_tables
Arguments:
Name | Required | Type | Description |
---|---|---|---|
base_id | Required | string | The ID of the Airtable base |
offset | Optional | string | Offset for getting the next page of results when iterating over pages |
airtable_find_records
Arguments:
Name | Required | Type | Description |
---|---|---|---|
base_id | Required | string | The ID of the Airtable base |
table_id | Required | string | The ID of the table to search |
filter_by_formula | Optional | string | Airtable web API param to search records |
offset | Optional | string | Offset for getting the next page of results |
airtable_create_records
Arguments:
Name | Required | Type | Description |
---|---|---|---|
base_id | Required | string | The ID of the Airtable base |
table_id | Required | string | The ID of the table |
records | Required | array | Array of record objects, each containing a fields object |
airtable_update_record
Arguments:
Name | Required | Type | Description |
---|---|---|---|
base_id | Required | string | The ID of the Airtable base |
table_id | Required | string | The ID of the table |
record_id | Required | string | The ID of the record to update |
fields | Required | object | Key-value pairs of field names and their new values |
airtable_delete_record
Arguments:
Name | Required | Type | Description |
---|---|---|---|
base_id | Required | string | The ID of the Airtable base |
table_id | Required | string | The ID of the table |
record_id | Required | string | The ID of the record to delete |
notion_find_databases
Arguments:
Name | Required | Type | Description |
---|---|---|---|
query | Optional | string | Text to search database titles against (Default: ”) |
cursor | Optional | string | Cursor for pagination of results (Default: ”) |
notion_create_database_item
Arguments:
Name | Required | Type | Description |
---|---|---|---|
database_id | Required | string | The ID of the Notion database |
properties | Required | object | Database property objects that define the item’s content |