Skip to content
LangChain

airtable for LangChain

com.mcparmory/airtable

Create, read, update, and delete records in Airtable bases and tables

client:LangChain transport:stdio runtime:pypi

Install airtable in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "airtable": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["mcparmory-airtable"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

airtable in other clients