Skip to content
LangChain

TweekIT MCP Server for LangChain

io.github.equilibrium-team/tweekit

Normalize and convert more than 400 file types via TweekIT's hosted MCP streamable HTTP endpoint.

client:LangChain transport:streamable-http tools:5

Install TweekIT MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tweekit": {
            "transport": "streamable_http",
            "url": "https://mcp.tweekit.io/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

TweekIT MCP Server in other clients