AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Neutrinos MCP Hackathon

mcp-vinay-r-s-neutrinos-mcp-hackathon · by Vinay-R-S

Intelligent Intake & Triage MCP Server Hackathon conducted by Neutrinos for different domains using plug and play method using config and YAML files

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add mcp-vinay-r-s-neutrinos-mcp-hackathon

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-vinay-r-s-neutrinos-mcp-hackathon)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Neutrinos MCP Hackathon? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Intelligent Intake and Triage System

This project is an Intelligent Intake Classification and Routing System built using the Model Context Protocol (MCP).

This README provides two ways to run the project:

  1. UI Mode (Browser-based)
  2. Terminal Mode (curl-based JSON)

Docker is required for the MCP backend server.

1) Requirements

  • Python 3.11+
  • Docker

2) Environment Setup

2.1 Create .env

From project root:

cp mcp_server/.env.example .env

Edit .env:

GROQ_API_KEY=your_groq_api_key_here
GEMINI_API_KEY=your_gemini_api_key_here

DEFAULT_INDUSTRY=banking
LOG_LEVEL=INFO

3) Backend (MCP Server) - Docker

3.1 Build Backend Image

docker build -t intake-triage-server .

3.2 Run Backend Container

docker run --rm -p 8000:8000 --env-file .env intake-triage-server

3.3 Verify Backend

curl -i http://127.0.0.1:8000/sse

4) Frontend (UI Client) - Browser Mode

The UI client is a FastAPI server that serves HTML/CSS/JS.

4.1 Create Virtual Environment

python3 -m venv .venv
source .venv/bin/activate

4.2 Install Dependencies

pip install -r mcp_client/requirements.txt
pip install -r mcp_server/requirements.txt

4.3 Run UI Client

Run the UI on port 8001:

python -m uvicorn mcp_client.app:app --host 0.0.0.0 --port 8001 --reload

4.4 Open UI in Browser

  • Local machine: open
  • http://127.0.0.1:8001/
  • HAWCC / cloud editor:
  • Forward/expose port 8001
  • Open the generated public URL in your browser

4.4 Open UI in Browser

  • Local machine: open
  • http://127.0.0.1:8001/
  • HAWCC / cloud editor:
  • Forward/expose port 8001
  • Open the generated public URL in your browser

5) Windows Setup (No Docker)

If you are on Windows and want to run without Docker, use the provided batch scripts.

5.1 One-Time Setup

Run setup_windows.bat to create the virtual environment and install all dependencies.

setup_windows.bat

Note: You still need to edit the .env file with your API keys after running setup.

5.2 Running the Project

Terminal 1 (Backend):

run_backend.bat

Terminal 2 (Client):

run_client.bat

The client will automatically open http://127.0.0.1:8001/ in your browser.

5) UI Mode Usage (Browser)

  1. Open: http://127.0.0.1:8001/
  2. Enter Issue Description
  3. Select Industry (optional)
  4. Select AI Provider (Groq or Gemini)
  5. Upload files (optional)
  6. Click Process Issue

The result page will show:

  • classification
  • severity
  • routing decision
  • SLA and escalation path

6) Terminal Mode Usage (JSON)

Use the JSON endpoint:

  • POST /api/submit

6.1 Submit Text Only

curl -s -X POST http://127.0.0.1:8001/api/submit \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data-urlencode "issue_text=My banking app got hacked and money was withdrawn" \
  --data-urlencode "industry=banking" \
  --data-urlencode "llm_provider=groq" | python -m json.tool

6.2 Upload Image

curl -s -X POST http://127.0.0.1:8001/api/submit \
  -F "issue_text=Please analyze this screenshot." \
  -F "industry=banking" \
  -F "llm_provider=groq" \
  -F "files=@test_data/Bill.webp" | python -m json.tool

6.3 Upload PDF

curl -s -X POST http://127.0.0.1:8001/api/submit \
  -F "issue_text=Please analyze the attached PDF complaint." \
  -F "industry=banking" \
  -F "llm_provider=groq" \
  -F "files=@test_data/sample.pdf" | python -m json.tool

6.4 Upload DOC / DOCX

curl -s -X POST http://127.0.0.1:8001/api/submit \
  -F "issue_text=Please analyze the attached Word document." \
  -F "industry=banking" \
  -F "llm_provider=groq" \
  -F "files=@test_data/sample.doc" | python -m json.tool

6.5 Upload Multiple Files

curl -s -X POST http://127.0.0.1:8001/api/submit \
  -F "issue_text=Analyze all attachments and triage the case." \
  -F "industry=banking" \
  -F "llm_provider=groq" \
  -F "files=@test_data/sample.pdf" \
  -F "files=@test_data/Bill.webp" | python -m json.tool

6.1) Windows PowerShell Commands

The above curl commands use Linux-style line continuation (\). For Windows PowerShell, use curl.exe (not curl, which is an alias for Invoke-WebRequest):

Submit Text Only (PowerShell)

curl.exe -s -X POST http://127.0.0.1:8001/api/submit -H "Content-Type: application/x-www-form-urlencoded" --data-urlencode "issue_text=My banking app got hacked and money was withdrawn" --data-urlencode "industry=banking" --data-urlencode "llm_provider=groq" | python -m json.tool

Upload Image (PowerShell)

curl.exe -s -X POST http://127.0.0.1:8001/api/submit -F "issue_text=Please analyze this screenshot." -F "industry=banking" -F "llm_provider=groq" -F "files=@test_data/Bill.webp" | python -m json.tool

Upload PDF (PowerShell)

curl.exe -s -X POST http://127.0.0.1:8001/api/submit -F "issue_text=Please analyze the attached PDF complaint." -F "industry=banking" -F "llm_provider=groq" -F "files=@test_data/sample.pdf" | python -m json.tool

Upload Multiple Files (PowerShell)

curl.exe -s -X POST http://127.0.0.1:8001/api/submit -F "issue_text=Analyze all attachments and triage the case." -F "industry=banking" -F "llm_provider=groq" -F "files=@test_data/sample.pdf" -F "files=@test_data/Bill.webp" | python -m json.tool

7) Supported Values

7.1 Industries

  • empty (auto-detect)
  • banking
  • education
  • healthcare
  • it_services
  • logistics
  • restaurant
  • retail

7.2 LLM Providers

  • groq
  • gemini

7.3 Supported File Types

  • .pdf
  • .docx, .doc
  • .txt
  • .xlsx, .xls
  • .png, .jpg, .jpeg, .gif, .webp, .bmp

8) Useful Commands

List test files

ls -l test_data

Check client docs

curl -i http://127.0.0.1:8001/docs
curl -i http://127.0.0.1:8001/openapi.json

9) Quick Start Summary

Terminal 1 (Backend):

docker build -t intake-triage-server .
docker run --rm -p 8000:8000 --env-file .env intake-triage-server

Terminal 2 (Frontend/UI Client):

python3 -m venv .venv
source .venv/bin/activate
pip install -r mcp_client/requirements.txt
pip install -r mcp_server/requirements.txt
python -m uvicorn mcp_client.app:app --host 0.0.0.0 --port 8001 --reload

Browser:

  • http://127.0.0.1:8001/

MCP Server:

fastmcp run mcp_server/server.py --transport sse --port 8000

MCP Client:

python -m uvicorn mcp_client.app:app --host 0.0.0.0 --port 8001 --reload

10) LLM Models Used

This project uses the following LLM models via API:

| Provider | Use Case | Model ID | Parameters / Context | | ---------- | ------------- | ------------------------------------------- | ------------------------ | | Groq | Text Analysis | llama-3.3-70b-versatile | 70B params, 128K context | | Groq | Vision/Images | meta-llama/llama-4-scout-17b-16e-instruct | 17B params, 128K context | | Gemini | Text Analysis | gemini-2.5-flash | ~1M input tokens | | Gemini | Vision/Images | gemini-2.5-flash | ~1M input tokens |

> Note: Vision models are automatically selected when images are uploaded.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.