Skip to content
LangChain

chainlink mcp for LangChain

io.github.junct-bot/chainlink-mcp

Chainlink - 35 tools for price feeds and oracle data

client:LangChain transport:streamable-http

Install chainlink mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "chainlink-mcp": {
            "transport": "streamable_http",
            "url": "https://chainlink.mcp.junct.dev/mcp",
        }
})

tools = await client.get_tools()

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

chainlink mcp in other clients