Skip to content
LangChain

GRACE Hello MCP for LangChain

io.github.rajitharul/grace-hello-mcp

A very simple remote MCP server that greets you, with a custom icon.

client:LangChain transport:streamable-http

Install GRACE Hello MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "grace-hello-mcp": {
            "transport": "streamable_http",
            "url": "https://grace-hello-mcp.onrender.com/mcp",
        }
})

tools = await client.get_tools()

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

GRACE Hello MCP in other clients