Skip to content
LangChain

SchemaSure — structured extraction for LangChain

io.github.noamjose/schemasure

Extract schema-valid JSON from text/HTML or document images. Pay per call via x402 V2.

client:LangChain transport:stdio runtime:npm

Install SchemaSure — structured extraction in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

SchemaSure — structured extraction in other clients