Skip to content
LangChain

PasteSheet — Google Sheets for LangChain

com.pastesheet/google-sheets

Query your Google Sheets as structured JSON: list sheets and tabs, read schemas, filter rows.

client:LangChain transport:streamable-http

Install PasteSheet — Google Sheets in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "google-sheets": {
            "transport": "streamable_http",
            "url": "https://pastesheet.com/mcp",
        }
})

tools = await client.get_tools()

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

PasteSheet — Google Sheets in other clients