Skip to content
LangChain

Stompy – AI Memory for Claude & MCP Agents for LangChain

ai.stompy/stompy

Persistent AI memory with semantic search, conflict detection, and ticketing.

client:LangChain transport:streamable-http

Install Stompy – AI Memory for Claude & MCP Agents in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "stompy": {
            "transport": "streamable_http",
            "url": "https://mcp.stompy.ai",
        }
})

tools = await client.get_tools()

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

Stompy – AI Memory for Claude & MCP Agents in other clients