Skip to content
LangChain

taufunctions for LangChain

io.github.jyswee/taufunctions

Serverless functions for coding agents. Deploy, invoke, monitor. 13 tools, stdio or remote SSE.

client:LangChain transport:sse runtime:npm

Install taufunctions in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "taufunctions": {
            "transport": "streamable_http",
            "url": "https://mcp.taufunctions.com/sse",
        }
})

tools = await client.get_tools()

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

taufunctions in other clients