Skip to content
LangChain

companieswise for LangChain

io.github.qinisolabs/companieswise

Verified UK company lookup & validation for AI agents — Companies House data, snapshot or live.

client:LangChain transport:stdio runtime:npm

Install companieswise in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

companieswise in other clients