Skip to content
LangChain

SPM - Structured Project Memory for LangChain

com.getspm/spm

Durable, shareable and governed project memory with smart triage and explicit project composition.

client:LangChain transport:streamable-http

Install SPM - Structured Project Memory in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "spm": {
            "transport": "streamable_http",
            "url": "https://getspm.com/v1/mcp",
        }
})

tools = await client.get_tools()

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

SPM - Structured Project Memory in other clients