Skip to content
LangChain

PersonIQ for LangChain

io.github.thebigfatdad/personiq

US public-records lookups: people search, reverse phone, property and criminal records.

client:LangChain transport:streamable-http

Install PersonIQ in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "personiq": {
            "transport": "streamable_http",
            "url": "https://mcp.personiq.io/mcp",
        }
})

tools = await client.get_tools()

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

PersonIQ in other clients