airtable_list_bases
Pack: airtable · Endpoint: https://gateway.pipeworx.io/airtable/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/airtable_list_bases for the schema, then POST the same URL with its arguments for the data.
List all Airtable bases the provided personal access token can access. Returns base IDs, names, and workspace info — use to discover baseId values needed by other airtable tools.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Airtable personal access token |
Example call
Arguments
{
"_apiKey": "your-airtable-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/airtable/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"airtable_list_bases","arguments":{"_apiKey":"your-airtable-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('airtable_list_bases', {
"_apiKey": "your-airtable-api-key"
});
Response shape
Always returns: bases
| Field | Type | Description |
|---|---|---|
bases | array | List of accessible Airtable bases |
Full JSON Schema
{
"type": "object",
"properties": {
"bases": {
"type": "array",
"description": "List of accessible Airtable bases",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Base ID"
},
"name": {
"type": "string",
"description": "Base name"
},
"workspaceId": {
"type": "string",
"description": "Workspace ID this base belongs to"
}
}
}
}
},
"required": [
"bases"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"airtable": {
"url": "https://gateway.pipeworx.io/airtable/mcp"
}
}
}
See Getting Started for client-specific install steps.