Skip to content
LangChain

screenpipe for LangChain

io.github.screenpipe/screenpipe-mcp

Search your local screen recordings, audio transcripts, and computer activity from screenpipe.

client:LangChain transport:stdio runtime:npm

Install screenpipe in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

screenpipe in other clients