RemoveDuplicates.org for LangChain
org.removeduplicates/remove-duplicates
Remove duplicate lines or CSV/TSV rows from text. Stateless: processed per call, never stored.
client:LangChain
transport:streamable-http
tools:1
Install RemoveDuplicates.org in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"remove-duplicates": {
"transport": "streamable_http",
"url": "https://removeduplicates.org/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs