Skip to content
LangChain

AI Humanizer for LangChain

io.github.evozim/ai-humanizer

Advanced text styling to preserve semantic human flow.

client:LangChain transport:sse

Install AI Humanizer in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "ai-humanizer": {
            "transport": "streamable_http",
            "url": "https://ai-humanizer-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

AI Humanizer in other clients