Skip to content
LangChain

weckr for LangChain

com.useweckr/weckr

Ask which of your customers cost more in LLM calls than they pay, per user and per feature.

client:LangChain transport:stdio runtime:npm

Install weckr in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "weckr": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@weckr/mcp"],
        }
})

tools = await client.get_tools()

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

weckr in other clients