airtable_get_record

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

Retrieve a single record by ID from an Airtable table. Returns all field values and record metadata.

Parameters

NameTypeRequiredDescription
_apiKeystringyesAirtable personal access token
baseIdstringyesAirtable base ID
tableIdOrNamestringyesTable ID or name
recordIdstringyesRecord ID (e.g., recXXXXXXXXXXXX)

Example call

Arguments

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

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_get_record","arguments":{"_apiKey":"your-airtable-api-key","baseId":"appXXXXXXXXXXXX","tableIdOrName":"Tasks","recordId":"recXXXXXXXXXXXX"}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: id, fields, createdTime

FieldTypeDescription
idstringRecord ID
fieldsobjectAll field name/value pairs for this record
createdTimestringISO timestamp when record was created
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Record ID"
    },
    "fields": {
      "type": "object",
      "description": "All field name/value pairs for this record"
    },
    "createdTime": {
      "type": "string",
      "description": "ISO timestamp when record was created"
    }
  },
  "required": [
    "id",
    "fields",
    "createdTime"
  ]
}

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