Skip to content
LangChain

spotlight for LangChain

ai.thrain/spotlight

Local PDF accessibility audit: machine-checkable PDF/UA basics (ADA/EAA/508). No uploads.

client:LangChain transport:stdio runtime:npm

Install spotlight in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

spotlight in other clients