Skip to content
LangChain

dVeracity Semantic API for LangChain

com.dveracity/semantic-mcp

Natural-language queries over a verified emissions knowledge graph, plus standards validation

client:LangChain transport:streamable-http runtime:npm

Install dVeracity Semantic API in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "semantic-mcp": {
            "transport": "streamable_http",
            "url": "https://api.dveracity.com/mcp",
        }
})

tools = await client.get_tools()

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

dVeracity Semantic API in other clients