Skip to content
LangChain

PatchX Freenote Agent for LangChain

io.github.zsts119/patchxnote-agent

PatchX Freenote MCP: summaries, memories, model results and user-approved webhook workflows.

client:LangChain transport:stdio runtime:npm

Install PatchX Freenote Agent in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "patchxnote-agent": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "patchxnote-agent"],
        }
})

tools = await client.get_tools()

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

PatchX Freenote Agent in other clients