Skip to content
LangChain

KeepFlash Agent Access for LangChain

io.github.dante-is-shipping/keepflash-agent-access

Search, read, cite, create, and safely update a user's private KeepFlash knowledge library.

client:LangChain transport:streamable-http

Install KeepFlash Agent Access in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "keepflash-agent-access": {
            "transport": "streamable_http",
            "url": "https://keepflash.com/api/mcp",
        }
})

tools = await client.get_tools()

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

KeepFlash Agent Access in other clients