Skip to content
LangChain

seam runtime for LangChain

io.github.blackhatshiftey/seam-runtime

SEAM: local-first memory runtime for AI agents, with retrieval and glassbox provenance over MCP.

client:LangChain transport:stdio runtime:pypi

Install seam runtime in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

seam runtime in other clients