Airtable for VS Code
io.github.domdomegg/airtable-mcp-server
Read and write access to Airtable database schemas, tables, and records.
client:VS Code
transport:stdio
runtime:npm
Install Airtable in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "airtable-api-key",
"description": "AIRTABLE_API_KEY",
"password": true
}
],
"servers": {
"airtable-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"airtable-mcp-server"
],
"env": {
"AIRTABLE_API_KEY": "${input:airtable-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs