Skip to content
LangChain

crowdin for LangChain

io.usefulapi/crowdin

MCP server for Crowdin — projects, files, strings, translation progress, tasks, and members.

client:LangChain transport:streamable-http

Install crowdin in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

crowdin in other clients