productivity
Airtable MCP Integration for OpenAI Agents SDK
Connect Airtable to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Airtable to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Airtable MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-airtable": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=airtable",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=airtable --write=deny Why Use KosmoKrator Here
Expose only Airtable instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Airtable Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Airtable integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__airtable__airtable_list_bases | airtable.airtable_list_bases | Read | List all Airtable bases the token has access to. |
integration__airtable__airtable_get_base | airtable.airtable_get_base | Read | Get details for a single Airtable base by ID. |
integration__airtable__airtable_list_records | airtable.airtable_list_records | Read | List records from an Airtable table with optional filtering, sorting, and pagination. |
integration__airtable__airtable_get_record | airtable.airtable_get_record | Read | Get a single Airtable record by ID. |
integration__airtable__airtable_create_record | airtable.airtable_create_record | Write | Create a new record in an Airtable table. |
integration__airtable__airtable_list_views | airtable.airtable_list_views | Read | List views for an Airtable base. |
integration__airtable__airtable_get_current_user | airtable.airtable_get_current_user | Read | Get the profile of the currently authenticated Airtable user. Useful for verifying credentials and displaying account information. |