airtable_list_records

Pack: airtable · Endpoint: https://gateway.pipeworx.io/airtable/mcp

Fetch records from an Airtable table with optional filtering by formula (e.g., “{Status} = ‘Done’”). Returns record IDs, field values, and metadata.

Parameters

NameTypeRequiredDescription
_apiKeystringyesAirtable personal access token
baseIdstringyesAirtable base ID (e.g., appXXXXXXXXXXXX)
tableIdOrNamestringyesTable ID or name
filterByFormulastringnoAirtable formula to filter records (optional)
maxRecordsnumbernoMaximum number of records to return (default 100)

Example call

Arguments

{
  "_apiKey": "your-airtable-api-key",
  "baseId": "appXXXXXXXXXXXX",
  "tableIdOrName": "Tasks"
}

curl

curl -X POST https://gateway.pipeworx.io/airtable/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"airtable_list_records","arguments":{"_apiKey":"your-airtable-api-key","baseId":"appXXXXXXXXXXXX","tableIdOrName":"Tasks"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('airtable_list_records', {
  "_apiKey": "your-airtable-api-key",
  "baseId": "appXXXXXXXXXXXX",
  "tableIdOrName": "Tasks"
});

More examples

{
  "_apiKey": "your-airtable-api-key",
  "baseId": "appXXXXXXXXXXXX",
  "tableIdOrName": "Tasks",
  "filterByFormula": "{Status} = 'Done'",
  "maxRecords": 50
}

Response shape

Always returns: records

FieldTypeDescription
recordsarrayList of records matching the query
offsetstringPagination offset for next batch of records
Full JSON Schema
{
  "type": "object",
  "properties": {
    "records": {
      "type": "array",
      "description": "List of records matching the query",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Record ID"
          },
          "fields": {
            "type": "object",
            "description": "Field name/value pairs for this record"
          },
          "createdTime": {
            "type": "string",
            "description": "ISO timestamp when record was created"
          }
        }
      }
    },
    "offset": {
      "type": "string",
      "description": "Pagination offset for next batch of records"
    }
  },
  "required": [
    "records"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "airtable": {
      "url": "https://gateway.pipeworx.io/airtable/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026