Skip to content
LangChain

Peptigraph for LangChain

org.peptigraph/mcp

Deterministic peptide reconstitution and dosing math, so assistants compute it instead of guessing.

client:LangChain transport:streamable-http tools:2

Install Peptigraph in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp": {
            "transport": "streamable_http",
            "url": "https://peptigraph.org/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

Peptigraph in other clients