Airtable MCP Server

by felores
Verified

search_records

Search for records in a table

Input Schema

NameRequiredDescriptionDefault
base_idYesID of the base
field_nameYesName of the field to search in
table_nameYesName of the table
valueYesValue to search for

Input Schema (JSON Schema)

{ "properties": { "base_id": { "description": "ID of the base", "type": "string" }, "field_name": { "description": "Name of the field to search in", "type": "string" }, "table_name": { "description": "Name of the table", "type": "string" }, "value": { "description": "Value to search for", "type": "string" } }, "required": [ "base_id", "table_name", "field_name", "value" ], "type": "object" }