Skip to content
LangChain

entity screen for LangChain

com.dropwatchhq/entity-screen

Screen a business or person for exclusions, debarment, and sanctions (SAM.gov, OFAC).

client:LangChain transport:streamable-http tools:2

Install entity screen in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "entity-screen": {
            "transport": "streamable_http",
            "url": "https://screen.dropwatchhq.com/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

entity screen in other clients