Skip to content
LangChain

Obolus for LangChain

io.github.sanzation/obolus

Read-only payroll calculations and multi-country tax comparisons for eight countries.

client:LangChain transport:streamable-http tools:2

Install Obolus in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "obolus": {
            "transport": "streamable_http",
            "url": "https://www.obolusfinanz.de/api/mcp/public",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Obolus in other clients