Skip to content
LangChain

project lore for LangChain

io.github.tamas-fm/project-lore

A local-first MCP server that routes development tasks to authoritative project documentation.

client:LangChain transport:stdio runtime:npm

Install project lore in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "project-lore": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "project-lore-mcp"],
        }
})

tools = await client.get_tools()

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

project lore in other clients