nysthee commited on
Commit
9f3f022
·
0 Parent(s):

Initial commit: Add MCP sentiment analysis app

Browse files
Files changed (2) hide show
  1. app.py +45 -0
  2. requirements.txt +2 -0
app.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import gradio as gr
3
+ from textblob import TextBlob
4
+
5
+
6
+ def sentiment_analysis(text: str) -> str:
7
+ """
8
+ Analyze the sentiment of the given text.
9
+
10
+ Args:
11
+ text (str): The text to analyze
12
+
13
+ Returns:
14
+ str: A JSON string containing polarity, subjectivity, and assessment
15
+ """
16
+ blob = TextBlob(text)
17
+ sentiment = blob.sentiment
18
+
19
+ result = {
20
+ "polarity": round(sentiment.polarity, 2), # -1 (negative) to 1 (positive)
21
+ "subjectivity": round(
22
+ sentiment.subjectivity, 2
23
+ ), # 0 (objective) to 1 (subjective)
24
+ "assessment": (
25
+ "positive"
26
+ if sentiment.polarity > 0
27
+ else "negative" if sentiment.polarity < 0 else "neutral"
28
+ ),
29
+ }
30
+
31
+ return json.dumps(result)
32
+
33
+
34
+ # Create the Gradio interface
35
+ demo = gr.Interface(
36
+ fn=sentiment_analysis,
37
+ inputs=gr.Textbox(placeholder="Enter text to analyze..."),
38
+ outputs=gr.Textbox(), # Changed from gr.JSON() to gr.Textbox()
39
+ title="Text Sentiment Analysis",
40
+ description="Analyze the sentiment of text using TextBlob",
41
+ )
42
+
43
+ # Launch the interface and MCP server
44
+ if __name__ == "__main__":
45
+ demo.launch(mcp_server=True)
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ gradio[mcp]
2
+ textblob