ChainScope for LangChain
io.github.vohlsyr/chainscope
Multi-chain wallet intelligence: balances, transactions, ENS, OFAC screening across 7 chains.
client:LangChain
transport:streamable-http
Install ChainScope in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"chainscope": {
"transport": "streamable_http",
"url": "https://chainsscope.duckdns.org/mcp/",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs