Airtable User MCP for VS Code
io.github.automations-project/airtable-user-mcp
Manage Airtable bases: schema, field CRUD, views, formula validation, extensions
client:VS Code
transport:stdio
runtime:npm
Install Airtable User MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "airtable-headless-only",
"description": "AIRTABLE_HEADLESS_ONLY",
"password": true
},
{
"type": "promptString",
"id": "airtable-no-browser",
"description": "AIRTABLE_NO_BROWSER",
"password": true
},
{
"type": "promptString",
"id": "airtable-user-mcp-home",
"description": "AIRTABLE_USER_MCP_HOME",
"password": true
}
],
"servers": {
"airtable-user-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"airtable-user-mcp"
],
"env": {
"AIRTABLE_HEADLESS_ONLY": "${input:airtable-headless-only}",
"AIRTABLE_NO_BROWSER": "${input:airtable-no-browser}",
"AIRTABLE_USER_MCP_HOME": "${input:airtable-user-mcp-home}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs