The Airtable MCP Server provides a seamless way to interact with Airtable databases by enabling both reading and writing capabilities. It is particularly useful for applications or systems that leverage Large Language Models (LLMs) to inspect and manipulate database schemas and records. This server supports various operations such as listing records, searching for specific text within records, and detailing database schemas. It simplifies database interactions by allowing users to configure it with the Claude Desktop app, making it a valuable tool for developers needing to automate database management tasks or integrate Airtable functionalities into their applications.
Lists records from a specified Airtable table. Parameters: baseId (string, required), tableId (string, required), maxRecords (number, optional), filterByFormula (string, optional)
Search for records containing specific text. Parameters: baseId (string, required), tableId (string, required), searchTerm (string, required), fieldIds (array, optional), maxRecords (number, optional)
Lists all accessible Airtable bases. No input parameters required.
Lists all tables in a specific base. Parameters: baseId (string, required), detailLevel (string, optional)
Gets detailed information about a specific table. Parameters: baseId (string, required), tableId (string, required), detailLevel (string, optional)
Gets a specific record by ID. Parameters: baseId (string, required), tableId (string, required), recordId (string, required)
Creates a new record in a table. Parameters: baseId (string, required), tableId (string, required), fields (object, required)
Updates one or more records in a table. Parameters: baseId (string, required), tableId (string, required), records (array, required)
Deletes one or more records from a table. Parameters: baseId (string, required), tableId (string, required), recordIds (array, required)
Creates a new table in a base. Parameters: baseId (string, required), name (string, required), description (string, optional), fields (array, required)
Updates a table's name or description. Parameters: baseId (string, required), tableId (string, required), name (string, optional), description (string, optional)
Creates a new field in a table. Parameters: baseId (string, required), tableId (string, required), name (string, required), type (string, required), description (string, optional), options (object, optional)
Updates a field's name or description. Parameters: baseId (string, required), tableId (string, required), fieldId (string, required), name (string, optional), description (string, optional)
No reviews yet. Be the first to review!
Sign in to join the conversation
After downloading, you can run the MCP server in any client or IDE:
node path/to/downloaded/file.mjs