airtable_get_record
ActiveTool of Airtable
declared in 0.1.0
Fetch a single Airtable record by its record ID (recXXXXXXXXXXXX) from a specified base and table. Returns all field values and record metadata including created/modified timestamps.
Parameters schema
{
"type": "object",
"examples": [
{
"baseId": "appXXXXXXXXXXXX",
"_apiKey": "your-airtable-api-key",
"recordId": "recXXXXXXXXXXXX",
"tableIdOrName": "Tasks"
}
],
"required": [
"_apiKey",
"baseId",
"tableIdOrName",
"recordId"
],
"properties": {
"baseId": {
"type": "string",
"description": "Airtable base ID"
},
"_apiKey": {
"type": "string",
"description": "Airtable personal access token"
},
"recordId": {
"type": "string",
"description": "Record ID (e.g., recXXXXXXXXXXXX)"
},
"tableIdOrName": {
"type": "string",
"description": "Table ID or name"
}
}
}Parent server
Airtable
https://github.com/pipeworx-io/mcp-airtable
1/7 registries