exchange rates for LangChain
io.github.theluckystrike/exchange-rates
Convert currencies on the daily European Central Bank reference rates. No API key, no signup.
client:LangChain
transport:streamable-http
runtime:mcpb
tools:10
Install exchange rates in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"exchange-rates": {
"transport": "streamable_http",
"url": "https://mcp.zovo.one/mcp/exchange-rates",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs