Skip to content
LangChain

NLP Tools - Sentiment, NER, Toxicity & Language Detection for LangChain

io.github.fasuizu-br/nlp-tools

Toxicity, sentiment, NER, PII detection, and language identification tools

client:LangChain transport:streamable-http tools:6

Install NLP Tools - Sentiment, NER, Toxicity & Language Detection in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "nlp-tools": {
            "transport": "streamable_http",
            "url": "https://apim-ai-apis.azure-api.net/mcp/nlp/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

NLP Tools - Sentiment, NER, Toxicity & Language Detection in other clients