Skip to content
LangChain

Shelter for LangChain

io.github.nextauralabs/shelter

Connect AI agents to scoped financial context from your own Shelter account

client:LangChain transport:stdio runtime:npm

Install Shelter in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Shelter in other clients