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
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Airtable personal access token |
baseId | string | yes | Airtable base ID |
tableIdOrName | string | yes | Table ID or name |
recordId | string | yes | Record 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
| Field | Type | Description |
|---|---|---|
id | string | Record ID |
fields | object | All field name/value pairs for this record |
createdTime | string | ISO 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.