Skip to content
LangChain

MoltArch for LangChain

com.moltarch/moltarch

Marketing intelligence API for AI agents. Real campaign data, not LLM guesses.

client:LangChain transport:streamable-http

Install MoltArch in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

MoltArch in other clients