Skip to content
LangChain

FairMind Project Context for LangChain

ai.fairmind/project-context

Project memory for coding agents: requirements, decisions, code graph and delivery telemetry.

client:LangChain transport:streamable-http

Install FairMind Project Context in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "project-context": {
            "transport": "streamable_http",
            "url": "https://project-context.fairmind.ai/mcp/mcp",
        }
})

tools = await client.get_tools()

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

FairMind Project Context in other clients