chore: configure HF static space entrypoint
Browse files- README.md +10 -0
- index.html +80 -0
README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Sentiment Evolution Tracker β MCP Monitoring Stack
|
| 2 |
|
| 3 |
Sentiment Evolution Tracker is an enterprise-ready monitoring stack that runs as a Model Context Protocol (MCP) server. It combines local sentiment analytics, churn prediction, alerting, and reporting, and can operate standalone or alongside Claude Desktop as an intelligent assistant.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: MCP NLP Analytics
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: static
|
| 7 |
+
app_file: index.html
|
| 8 |
+
pinned: false
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
# Sentiment Evolution Tracker β MCP Monitoring Stack
|
| 12 |
|
| 13 |
Sentiment Evolution Tracker is an enterprise-ready monitoring stack that runs as a Model Context Protocol (MCP) server. It combines local sentiment analytics, churn prediction, alerting, and reporting, and can operate standalone or alongside Claude Desktop as an intelligent assistant.
|
index.html
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<title>MCP NLP Analytics</title>
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 7 |
+
<style>
|
| 8 |
+
:root {
|
| 9 |
+
color-scheme: light dark;
|
| 10 |
+
}
|
| 11 |
+
body {
|
| 12 |
+
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
| 13 |
+
margin: 2rem;
|
| 14 |
+
line-height: 1.6;
|
| 15 |
+
max-width: 900px;
|
| 16 |
+
}
|
| 17 |
+
h1 {
|
| 18 |
+
color: #0ea5e9;
|
| 19 |
+
}
|
| 20 |
+
code {
|
| 21 |
+
background: rgba(15, 23, 42, 0.08);
|
| 22 |
+
padding: 0.15rem 0.35rem;
|
| 23 |
+
border-radius: 0.25rem;
|
| 24 |
+
font-size: 0.95rem;
|
| 25 |
+
}
|
| 26 |
+
a {
|
| 27 |
+
color: #312e81;
|
| 28 |
+
}
|
| 29 |
+
section {
|
| 30 |
+
margin-bottom: 2rem;
|
| 31 |
+
}
|
| 32 |
+
</style>
|
| 33 |
+
</head>
|
| 34 |
+
<body>
|
| 35 |
+
<main>
|
| 36 |
+
<h1>MCP NLP Analytics Hackathon Delivery</h1>
|
| 37 |
+
<section>
|
| 38 |
+
<p>
|
| 39 |
+
This Hugging Face Space hosts the <strong>Sentiment Evolution Tracker</strong>
|
| 40 |
+
MCP server codebase. The project powers a conversational analytics
|
| 41 |
+
workflow that enriches customer support teams with local NLP, risk
|
| 42 |
+
forecasting, and Model Context Protocol tools.
|
| 43 |
+
</p>
|
| 44 |
+
</section>
|
| 45 |
+
<section>
|
| 46 |
+
<h2>How to Run Locally</h2>
|
| 47 |
+
<ol>
|
| 48 |
+
<li>Clone the repository from GitHub or this Space.</li>
|
| 49 |
+
<li>Install dependencies with <code>pip install -r requirements.txt</code>.</li>
|
| 50 |
+
<li>Run <code>python init_db.py</code> followed by <code>python tools/populate_demo_data.py</code>.</li>
|
| 51 |
+
<li>
|
| 52 |
+
Launch the MCP server with <code>python src/mcp_server.py</code> and
|
| 53 |
+
connect from Claude Desktop using the provided
|
| 54 |
+
<code>config/claude_desktop_config.json</code>.
|
| 55 |
+
</li>
|
| 56 |
+
</ol>
|
| 57 |
+
<p>
|
| 58 |
+
For a full walkthrough consult
|
| 59 |
+
<a href="README.md">README.md</a> and the documentation set inside the
|
| 60 |
+
<code>docs/</code> directory.
|
| 61 |
+
</p>
|
| 62 |
+
</section>
|
| 63 |
+
<section>
|
| 64 |
+
<h2>Key Resources</h2>
|
| 65 |
+
<ul>
|
| 66 |
+
<li><a href="README.md">Project README</a></li>
|
| 67 |
+
<li><a href="docs/QUICK_START.md">Quick Start Guide</a></li>
|
| 68 |
+
<li><a href="docs/ARCHITECTURE.md">Architecture Overview</a></li>
|
| 69 |
+
<li><a href="docs/EXECUTIVE_SUMMARY.md">Executive Summary</a></li>
|
| 70 |
+
</ul>
|
| 71 |
+
</section>
|
| 72 |
+
<section>
|
| 73 |
+
<p>
|
| 74 |
+
This Space is configured as <strong>Static</strong> to expose the full MCP
|
| 75 |
+
code submission required for the Anthropic MCP 1st Birthday Hackathon.
|
| 76 |
+
</p>
|
| 77 |
+
</section>
|
| 78 |
+
</main>
|
| 79 |
+
</body>
|
| 80 |
+
</html>
|