Text Intelligence Mcp
io.github.varvararatta/text_intelligence_mcpText Intelligence delivers robust NLP capabilities without the hassle of authentication or
Tools · 6
Detect language of text using character frequency analysis. Returns: {language, confidence, method}
Analyze sentiment of text (positive/negative/neutral). Returns: {score, label, confidence}
Extract top keywords from text using TF scoring. Returns: {keywords: [{word, score}], total_words}
Find duplicate or near-duplicate texts using Jaccard similarity. Returns: {duplicates: [{text1_idx, text2_idx, similarity}]}
Extractive summarization — picks most important sentences. Returns: {summary, sentences_used, original_length}
Server health check.
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"text_intelligence_mcp": {
"url": "https://text-intelligence-mcp.mcpize.run/mcp",
"transport": "streamable-http"
}
}
}