Skip to content
LangChain

Nautilus Compass Memory for LangChain

io.github.chunxiaoxx/nautilus-compass

Local-first long-term memory for AI agents, with byte-recomputable signed verification receipts.

client:LangChain transport:streamable-http runtime:pypi

Install Nautilus Compass Memory in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "nautilus-compass": {
            "transport": "streamable_http",
            "url": "https://compass.nautilus.social/mcp/",
        }
})

tools = await client.get_tools()

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

Nautilus Compass Memory in other clients