wise mcp for LangChain
io.github.mrfentmen/wise-mcp
MCP server for Wise: profiles, balances, exchange rates. Needs a free Wise API token.
client:LangChain
transport:stdio
runtime:npm
Install wise mcp in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"wise-mcp": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@mrfentmen/wise-mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs