Skip to content
LangChain

noether physics for LangChain

io.github.ranshiv/noether-physics

Physics assistant: checked equations, live simulations, claims verified against arXiv papers

client:LangChain transport:stdio runtime:pypi

Install noether physics in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "noether-physics": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["noether-physics"],
        }
})

tools = await client.get_tools()

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

noether physics in other clients