Skip to content
LangChain

juudd for LangChain

com.juudd/juudd

Put an AI-written project online: a site on a subdomain with a Postgres database of its own.

client:LangChain transport:streamable-http

Install juudd in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

juudd in other clients