Airtable MCP Server
Databasestdiov1.6.0
MCP server for Airtable that lets AI agents read and write records, list bases and tables, inspect field schemas, and run filtered queries. Ideal for turning Airtable into a lightweight backend or knowledge base that agents can manage conversationally.
Bağlan
Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": [
"-y",
"airtable-mcp-server"
],
"env": {
"AIRTABLE_API_KEY": "<YOUR_AIRTABLE_API_KEY>"
}
}
}
}Araçlar (3)
list_records
List records from a table with optional filtering and field selection.
{
"type": "object",
"required": [
"base_id",
"table"
],
"properties": {
"table": {
"type": "string",
"description": "Table name or ID"
},
"base_id": {
"type": "string",
"description": "Airtable base ID"
},
"max_records": {
"type": "integer",
"description": "Maximum number of records to return"
},
"filter_by_formula": {
"type": "string",
"description": "Airtable formula to filter records"
}
}
}create_record
Create a new record in a table with the given field values.
{
"type": "object",
"required": [
"base_id",
"table",
"fields"
],
"properties": {
"table": {
"type": "string",
"description": "Table name or ID"
},
"fields": {
"type": "object",
"description": "Field name/value pairs for the new record"
},
"base_id": {
"type": "string",
"description": "Airtable base ID"
}
}
}update_record
Update fields on an existing record.
{
"type": "object",
"required": [
"base_id",
"table",
"record_id",
"fields"
],
"properties": {
"table": {
"type": "string",
"description": "Table name or ID"
},
"fields": {
"type": "object",
"description": "Field name/value pairs to update"
},
"base_id": {
"type": "string",
"description": "Airtable base ID"
},
"record_id": {
"type": "string",
"description": "ID of the record to update"
}
}
}Kaynaklar
Bu sunucu herhangi bir kaynak sunmuyor.
Prompt'lar
Bu sunucu herhangi bir prompt sunmuyor.
Sunucu bilgileri
- Lisans
- MIT
- Sürüm
- 1.6.0
- Yıldızlar
- 1,340
- Son güncelleme
- 19 Haziran 2026