Skip to content
LangChain

EveryPage for LangChain

co.everypage/mcp

Share PDFs as tracked links and see who read them, how far they got, and where they stopped.

client:LangChain transport:stdio runtime:npm

Install EveryPage in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

EveryPage in other clients