Skip to content
LangChain

Euclid-MCP for LangChain

io.github.meob/euclid-mcp

Deterministic logical reasoning engine — facts in Euclid IR, solutions with proof trees

client:LangChain transport:stdio runtime:pypi

Install Euclid-MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Euclid-MCP in other clients