Skip to content
LangChain

think mcp for LangChain

net.agentutil/think-mcp

Intent security pre-flight checks for autonomous AI agents.

client:LangChain transport:stdio runtime:npm

Install think mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

think mcp in other clients