Salta l'installazione. Attivo in meno di 2 minuti.
Avvia una prova gratuita su cloud.anythingmcp.com, aggiungi connector con un clic, poi punta il tuo client AI (Claude, ChatGPT, Copilot o Cursor) all'endpoint MCP generato. Niente Docker, niente git clone, nessuna esperienza di sviluppo richiesta.
Summary
Read Airtable bases, table schemas, and records from any AI agent. 4 read-only tools, Personal Access Token auth.
💡 Niente installazione? Vai direttamente su cloud.anythingmcp.com. Accedi, clicca Connectors → Airtable, inserisci le credenziali, genera una MCP API key — fatto. Niente Docker, niente
git clone, niente server locale.
Airtable + Gemini
Read Airtable bases, table schemas, and records from any AI agent. 4 read-only tools, Personal Access Token auth.
Prerequisiti
Le istruzioni di setup complete sono incluse nel connettore stesso (visibili nello store quando lo selezioni). Le variabili d'ambiente richieste sono:
AIRTABLE_PERSONAL_ACCESS_TOKEN
Step 1 — Ottieni le credenziali
Setup:
- Create a Personal Access Token at https://airtable.com/create/tokens.
- Grant only the
data.records:readandschema.bases:readscopes. - Restrict the token's access to only the bases this connector must read.
- Set
AIRTABLE_PERSONAL_ACCESS_TOKEN.
Authentication: Authorization: Bearer ${AIRTABLE_PERSONAL_ACCESS_TOKEN}. Use a scoped Personal Access Token, not a legacy API key.
Discovery order: call airtable_list_bases, then airtable_list_tables with a base ID to find table IDs, names, fields, and views. Use a table ID when possible because names can change.
…(continued in the in-app connector instructions)
Step 2 — Installa l'adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Step 3 — Aggiungi il connettore in Gemini
Gemini CLI legge i server MCP da ~/.gemini/settings.json (o %APPDATA%\gemini\settings.json su Windows). Aggiungi:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Ottieni la tua MCP API key da AnythingMCP → Profilo → MCP API Keys → Nuova Key.
- Salva il file e riavvia
gemini. - Esegui
/mcpnella Gemini CLI —Airtabledovrebbe essere elencato come disponibile. - Vertex AI Studio: passa
https://cloud.anythingmcp.com/mcpnell'arraytoolsdella richiesta con lo stesso header Bearer.
Tool disponibili
| Tool | What it does |
|---|---|
airtable_list_bases | List bases accessible to the Personal Access Token |
airtable_list_tables | List a base's table schemas, including table IDs, names, fields, and views |
airtable_list_records | List records from a table |
airtable_get_record | Get one record by ID from a table, for example record ID recABC123DEF456 |
FAQ
Gemini 1.5 Pro o 2.x supportano MCP? Sì — Gemini CLI ≥ 0.4 e la Vertex AI tools API accettano connettori MCP httpUrl con header Bearer.
Prossimi passi
Questa guida ti è stata utile?