Skip to content
LangChain

pixelcheck for LangChain

io.github.xcodethink/pixelcheck

Real eyes and hands on the web for AI agents. MCP-first. Local-first. Vendor-agnostic.

client:LangChain transport:stdio runtime:npm

Install pixelcheck in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

pixelcheck in other clients