airtable_create_record
ActiveTool of Airtable
declared in 0.1.0
Add a new record to an Airtable table with specified field values. Returns the created record ID and full record data.
Parameters schema
{
"type": "object",
"examples": [
{
"baseId": "appXXXXXXXXXXXX",
"fields": {
"Name": "New Project",
"Owner": "John Doe",
"Status": "In Progress"
},
"_apiKey": "your-airtable-api-key",
"tableIdOrName": "Tasks"
}
],
"required": [
"_apiKey",
"baseId",
"tableIdOrName",
"fields"
],
"properties": {
"baseId": {
"type": "string",
"description": "Airtable base ID"
},
"fields": {
"type": "object",
"description": "Object of field name/value pairs to set on the new record"
},
"_apiKey": {
"type": "string",
"description": "Airtable personal access token"
},
"tableIdOrName": {
"type": "string",
"description": "Table ID or name"
}
}
}Parent server
Airtable
https://github.com/pipeworx-io/mcp-airtable
1/7 registries