Skip to content
LangChain

tactus for LangChain

io.github.projectailiberation/tactus

Content-agnostic control layer for intimate hardware; forwards Buttplug/Intiface commands only.

client:LangChain transport:stdio runtime:npm

Install tactus in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

tactus in other clients