word aligner for LangChain
io.github.tinygodsdev/word-aligner
Turn a phrase and its translation into a shareable word-alignment diagram.
client:LangChain
transport:streamable-http
tools:1
Install word aligner in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"word-aligner": {
"transport": "streamable_http",
"url": "https://aligner.tinygods.dev/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs