Skip to content
LangChain

TweekIT MCP Server for LangChain

io.tweekit/mcp

Normalize and convert 400+ file types via TweekIT's hosted MCP endpoint.

client:LangChain transport:streamable-http

Install TweekIT MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp": {
            "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

TweekIT MCP Server in other clients