Skip to content
LangChain

Company Screening for LangChain

io.github.tributarydata/company-screening

UK company register lookups plus US, EU and UN sanctions screening. Every answer cites source.

client:LangChain transport:streamable-http

Install Company Screening in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "company-screening": {
            "transport": "streamable_http",
            "url": "https://tributarydata--company-screening-mcp.apify.actor/mcp",
        }
})

tools = await client.get_tools()

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

Company Screening in other clients