sentor-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sentor-mcpAnalyze sentiment toward 'price' and 'service' in these support tickets and cluster them."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sentor MCP Server
Connect Sentor's entity-based sentiment analysis to Claude, Cursor, Windsurf, and any MCP-compatible AI assistant.
What It Does
Once installed, your AI assistant gains four tools:
Tool | What it does |
| Score sentiment toward specific entities in any text |
| Group 5+ documents by topic automatically (BERTopic) |
| Generate a 3-5 word label for each cluster using LLM |
| Verify Sentor API is reachable |
Example prompt after setup: "Analyze these 50 customer reviews for sentiment toward our checkout flow and shipping speed, then cluster them by topic."
Related MCP server: Ukraine War MCP
Requirements
Python 3.10+
A Sentor API key → Get one free at dashboard.sentor.app
Installation
pip install sentor-mcpClaude Desktop Setup
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"sentor": {
"command": "sentor-mcp",
"env": {
"SENTOR_API_KEY": "your_api_key_here"
}
}
}
}Restart Claude Desktop. You'll see the Sentor tools available in the tool selector.
Cursor / Windsurf Setup
Add to your MCP config file (.cursor/mcp.json or equivalent):
{
"mcpServers": {
"sentor": {
"command": "sentor-mcp",
"env": {
"SENTOR_API_KEY": "your_api_key_here"
}
}
}
}Usage Examples
Once connected, use natural language:
Sentiment analysis:
"Use Sentor to analyze the sentiment of these reviews toward Apple and iPhone: [paste reviews]"
Clustering:
"I have 200 customer support tickets. Use Sentor to cluster them by topic and name each cluster."
Full pipeline:
"Analyze sentiment in these 100 reviews for 'delivery' and 'packaging' entities, then cluster them and name each cluster."
Tool Reference
analyze_sentiment(docs, language="en")
docs = [
{
"doc_id": "review_1",
"doc": "The delivery was fast but the packaging was terrible.",
"entities": ["delivery", "packaging"]
}
]
# Returns: predicted_label, probabilities, per-sentence detailscluster_documents(documents, language="en")
documents = [
{"doc_id": "r1", "text": "Great product quality", "entities": ["product"]},
# ... at least 5 documents required
]
# Returns: clusters with cluster_id, documents, top_wordsname_topic(cluster_id, documents, top_words, entities, language="en")
# Pass the cluster data from cluster_documents response:
name_topic(
cluster_id=0,
documents=cluster["documents"],
top_words=cluster["top_words"],
entities=["BrandName"] # exclude your brand from the topic label
)
# Returns: topic_name (e.g. "Shipping Delay Complaints")health_check()
# Returns: { "status": "healthy", "version": "...", "llm_status": "available" }Rate Limits
Plan | Per Minute | Per Month |
Free | 3 | 300 |
Starter | 60 | 3,000 |
Growth | 200 | 15,000 |
Business | 500 | 60,000 |
Enterprise | 10,000 | Unlimited |
Remote Deployment (HTTP/SSE)
To run as a hosted server:
docker build -t sentor-mcp .
docker run -e SENTOR_API_KEY=your_key -p 8080:8080 sentor-mcpThe server exposes SSE at http://localhost:8080/sse and can be connected to AI tools that support remote MCP servers.
Links
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NIKX-Tech/sentor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server