Skip to content
LangChain

instinct for LangChain

io.github.yakuphanycl/instinct

Self-learning memory for AI coding agents with pattern detection and confidence scoring.

client:LangChain transport:stdio runtime:pypi

Install instinct in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

instinct in other clients