Skip to content
LangChain

Quantum-Shield for LangChain

io.github.evozim/quantum-shield

Post-quantum cryptographic library protecting data packets.

client:LangChain transport:sse

Install Quantum-Shield in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "quantum-shield": {
            "transport": "streamable_http",
            "url": "https://quantum-shield-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

Quantum-Shield in other clients