Skip to content
LangChain

hash forge mcp for LangChain

io.github.ryudi84/hash-forge-mcp

Hash text with SHA-256, SHA-384, SHA-512 and compare hashes

client:LangChain transport:stdio runtime:npm

Install hash forge mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hash-forge-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "hash-forge-mcp"],
        }
})

tools = await client.get_tools()

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

hash forge mcp in other clients