Skip to content
LangChain

thingctx for LangChain

com.thingctx/thingctx

Drive devices and APIs from their W3C Thing Description. You gate every operation.

client:LangChain transport:stdio runtime:pypi

Install thingctx in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "thingctx": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["thingctx"],
        }
})

tools = await client.get_tools()

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

thingctx in other clients