Skip to content
LangChain

GroundTruth — subsurface scan QA & trade estimating for LangChain

ai.gtfi/groundtruth

Two independent AI models read a GPR, locate or pipe scan and flag the do-not-core call.

client:LangChain transport:streamable-http tools:3

Install GroundTruth — subsurface scan QA & trade estimating in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "groundtruth": {
            "transport": "streamable_http",
            "url": "https://gtfi.ai/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

GroundTruth — subsurface scan QA & trade estimating in other clients