currency exchange for LangChain
io.github.theluckystrike/currency-exchange
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 currency exchange in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"currency-exchange": {
"transport": "streamable_http",
"url": "https://mcp.zovo.one/mcp/currency-exchange",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs