File size: 3,184 Bytes
e73d316
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23b49e8
 
 
 
 
840b4dd
23b49e8
 
 
 
840b4dd
 
 
e73d316
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>MCP NLP Analytics</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style>
      :root {
        color-scheme: light dark;
      }
      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        margin: 2rem;
        line-height: 1.6;
        max-width: 900px;
      }
      h1 {
        color: #0ea5e9;
      }
      code {
        background: rgba(15, 23, 42, 0.08);
        padding: 0.15rem 0.35rem;
        border-radius: 0.25rem;
        font-size: 0.95rem;
      }
      a {
        color: #312e81;
      }
      section {
        margin-bottom: 2rem;
      }
    </style>
  </head>
  <body>
    <main>
      <h1>MCP NLP Analytics Hackathon Delivery</h1>
      <section>
        <p>
          This Hugging Face Space hosts the <strong>Sentiment Evolution Tracker</strong>
          MCP server codebase. The project powers a conversational analytics
          workflow that enriches customer support teams with local NLP, risk
          forecasting, and Model Context Protocol tools.
        </p>
      </section>
      <section>
        <h2>How to Run Locally</h2>
        <ol>
          <li>Clone the repository from GitHub or this Space.</li>
          <li>Install dependencies with <code>pip install -r requirements.txt</code>.</li>
          <li>Run <code>python init_db.py</code> followed by <code>python tools/populate_demo_data.py</code>.</li>
          <li>
            Launch the MCP server with <code>python src/mcp_server.py</code> and
            connect from Claude Desktop using the provided
            <code>config/claude_desktop_config.json</code>.
          </li>
        </ol>
        <p>
          For a full walkthrough consult
          <a href="README.md">README.md</a> and the documentation set inside the
          <code>docs/</code> directory.
        </p>
      </section>
      <section>
        <h2>Key Resources</h2>
        <ul>
          <li><a href="README.md" target="_blank" rel="noopener noreferrer">Project README</a></li>
          <li><a href="docs/QUICK_START.md" target="_blank" rel="noopener noreferrer">Quick Start Guide</a></li>
          <li><a href="docs/ARCHITECTURE.md" target="_blank" rel="noopener noreferrer">Architecture Overview</a></li>
          <li><a href="docs/EXECUTIVE_SUMMARY.md" target="_blank" rel="noopener noreferrer">Executive Summary</a></li>
          <li><a href="https://youtu.be/h2tNu2KTPQk" target="_blank" rel="noopener noreferrer">Demo Video (YouTube)</a></li>
          <li>
            <a
              href="https://www.linkedin.com/posts/rubenreyesparra_mcp-nlp-analytics-a-hugging-face-space-activity-7400976539959390208-SG3Q"
              target="_blank"
              rel="noopener noreferrer"
              >LinkedIn Announcement</a
            >
          </li>
        </ul>
      </section>
      <section>
        <p>
          This Space is configured as <strong>Static</strong> to expose the full MCP
          code submission required for the Anthropic MCP 1st Birthday Hackathon.
        </p>
      </section>
    </main>
  </body>
</html>