Skip to content
LangChain

geo tool check for LangChain

io.github.shufflethis/geo-tool-check

Is this page readable for AI search? Crawler access, structure and citability checks, runs locally.

client:LangChain transport:stdio runtime:npm

Install geo tool check in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

geo tool check in other clients