airtable_list_bases

Pack: airtable · Endpoint: https://gateway.pipeworx.io/airtable/mcp

List all Airtable bases you have access to. Returns base IDs, names, and workspace info. Use to explore available databases.

Parameters

NameTypeRequiredDescription
_apiKeystringyesAirtable 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

FieldTypeDescription
basesarrayList 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.

Regenerated from source · build May 9, 2026