{
  "info": {
    "name": "Airtable — mcp.ai",
    "description": "REST API for the Airtable MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/airtable",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "airtable_create_base",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/base",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "base"
          ]
        },
        "description": "Creates a new airtable base with specified tables and fields within a workspace; ensure field options are valid for their type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tables\": \"\",\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_create_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "comment"
          ]
        },
        "description": "Creates a new comment on a specific record within an airtable base and table.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"baseId\": \"\",\n  \"recordId\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_create_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "field"
          ]
        },
        "description": "Creates a new field within a specified table in an airtable base.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"baseId\": \"\",\n  \"options\": {},\n  \"tableId\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_create_multiple_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/multiple/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "multiple",
            "records"
          ]
        },
        "description": "Creates multiple new records in a specified airtable table.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"records\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_create_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "record"
          ]
        },
        "description": "Creates a new record in a specified airtable table; field values must conform to the table's column types.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"fields\": {},\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_create_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "table"
          ]
        },
        "description": "Creates a new table within a specified existing airtable base, allowing definition of its name, description, and field structure.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"baseId\": \"\",\n  \"fields\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_delete_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "comment"
          ]
        },
        "description": "Deletes an existing comment from a specified record in an airtable table.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"recordId\": \"\",\n  \"rowCommentId\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_delete_multiple_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "records"
          ]
        },
        "description": "Deletes up to 10 specified records from a table within an airtable base.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"recordIds\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_delete_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "record"
          ]
        },
        "description": "Permanently deletes a specific record from an existing table within an existing airtable base.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"recordId\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_get_base_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/base/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "base",
            "schema"
          ]
        },
        "description": "Retrieves the detailed schema for a specified airtable base, including its tables, fields, field types, and configurations, using the `baseid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_get_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "record"
          ]
        },
        "description": "Retrieves a specific record from a table within an airtable base.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"recordId\": \"\",\n  \"cellFormat\": \"\",\n  \"tableIdOrName\": \"\",\n  \"returnFieldsByFieldId\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_get_user_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "info"
          ]
        },
        "description": "Retrieves information, such as id and permission scopes, for the currently authenticated airtable user from the `/meta/whoami` endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_list_bases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bases"
          ]
        },
        "description": "Retrieves all airtable bases accessible to the authenticated user, which may include an 'offset' for pagination.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_list_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "comments"
          ]
        },
        "description": "Retrieves all comments for a specific record in an airtable table, requiring existing `baseid`, `tableidorname`, and `recordid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"recordId\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_list_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "records"
          ]
        },
        "description": "Retrieves records from an airtable table, with options for filtering, sorting, pagination, and specifying returned fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"view\": \"\",\n  \"baseId\": \"\",\n  \"fields\": \"\",\n  \"offset\": \"\",\n  \"pageSize\": 0,\n  \"timeZone\": \"\",\n  \"cellFormat\": \"\",\n  \"maxRecords\": 0,\n  \"userLocale\": \"\",\n  \"tableIdOrName\": \"\",\n  \"recordMetadata\": \"\",\n  \"filterByFormula\": \"\",\n  \"returnFieldsByFieldId\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_update_multiple_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/multiple/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "multiple",
            "records"
          ]
        },
        "description": "Updates multiple existing records in a specified airtable table; these updates are not performed atomically.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"records\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtable_update_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "record"
          ]
        },
        "description": "Modifies specified fields of an existing record in an airtable base and table; the base, table, and record must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"baseId\": \"\",\n  \"fields\": {},\n  \"recordId\": \"\",\n  \"tableIdOrName\": \"\",\n  \"returnFieldsByFieldId\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}