loading…
Search for a command to run...
loading…
Sentiment Analysis AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Sentiment Analysis AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
MCP server for sentiment analysis ai mcp operations
Sentiment Analysis Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
analyze_sentiment |
Analyse the sentiment of a text. Returns score (0-1), label (positive/negative/n |
batch_analyze |
Analyse sentiment for multiple texts at once. Provide texts separated by ' |
compare_sentiments |
Compare the sentiment of two texts side by side. |
extract_emotions |
Detect emotions present in text. Returns detected emotions with intensity scores |
pip install meok-sentiment-analysis-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"sentiment-analysis-ai": {
"command": "python",
"args": ["-m", "meok_sentiment_analysis_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 4 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"sentiment-analysis-ai-mcp": {
"command": "npx",
"args": []
}
}
}