Fast Airtable operations via FGP daemon - 20-40x faster than MCP. Use when user needs to manage bases, query tables, create/update records, or work with views. Triggers on "airtable query", "list records", "create record", "airtable base", "update airtable".
Resources
1Install
npx skillscat add fast-gateway-protocol/fgp-skills/airtable-daemon Install via the SkillsCat registry.
SKILL.md
FGP Airtable Daemon
Fast Airtable database operations.
Why FGP?
| Operation | FGP Daemon | REST API | Speedup |
|---|---|---|---|
| List records | 15ms | 400ms | 27x |
| Get record | 8ms | 250ms | 31x |
| Create | 12ms | 350ms | 29x |
| Update | 10ms | 300ms | 30x |
Installation
brew install fast-gateway-protocol/fgp/fgp-airtableSetup
export AIRTABLE_API_KEY="pat..."
# Or personal access token
export AIRTABLE_PAT="pat..."
fgp start airtableAvailable Commands
| Command | Description |
|---|---|
airtable.bases |
List bases |
airtable.tables |
List tables in base |
airtable.records |
List records |
airtable.record |
Get single record |
airtable.create |
Create record(s) |
airtable.update |
Update record(s) |
airtable.delete |
Delete record(s) |
airtable.views |
List views |
Example Workflows
# List records with filter
fgp call airtable.records \
--base appXXX \
--table "Tasks" \
--filter "{Status} = 'Active'" \
--view "Grid view"
# Create record
fgp call airtable.create \
--base appXXX \
--table "Tasks" \
--fields '{"Name": "New task", "Status": "Todo"}'
# Batch update
fgp call airtable.update \
--base appXXX \
--table "Tasks" \
--records '[{"id": "recXXX", "fields": {"Status": "Done"}}]'