Skip to content
LangChain

Pithflow for LangChain

com.pithflow/pithflow

Read-only access to your own Pithflow meeting notes, transcripts, dictionary and usage.

client:LangChain transport:streamable-http

Install Pithflow in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Pithflow in other clients