MCP IT Help Desk
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP IT Help DeskWiFi connection keeps dropping, please help."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π€ MCP IT Help Desk
AI-powered IT support: understands issues (TR/EN), suggests fixes, and routes to the right experts. Experts are stored in Django DB.
β¨ Features
AI-Powered Classification (100% LLM): Turkish + English via Gemini; no heuristics
Auto-Solutions: Common hardware/software/network fixes for non-critical cases
Smart Expert Assignment: Availability + expertise + load consideration
Modern Web UI: Real-time chat via Flask + Socket.IO + Tailwind
MCP Tools: Add/process issues, AI try-solve, assign experts
π§ Table of Contents
π§ MCP Tools
π Quick Start
π§± Architecture
ποΈ File Structure
π Comprehensive Documentation
βοΈ Advanced Configuration
π§ͺ Usage Examples
π§ Design Philosophy
π€ Contributing & Support
π§ MCP Tools
Tool | Purpose | Inputs | Output |
| Create a new ticket with normalized fields and timestamps |
|
|
| Attempt auto-resolution for common issues (non-critical) |
| Solution text or suggestion to assign expert |
| Classify description and pick best available expert |
|
|
| Batch normalize + auto-solve + assign/queue | none | Summary: closed_by_ai, assigned/queued, skipped |
π©βπ» Expert Data Format (Django DB)
Field | Type | Example | Notes |
| string (pk) |
| Human-friendly ID |
| string |
| Display name |
| JSON/list |
| Tags matched by classifier |
| string |
| Optional |
| boolean |
| Considered for assignment |
| integer |
| Incremented on assignment |
π Quick Start
Prerequisites
Python 3.11+
uv (recommended)
Gemini API key (required): set
GEMINI_API_KEYorGOOGLE_API_KEY
Install dependencies
uv syncπ₯ Most Important: Start Project (2 terminals)
Terminal 1 β start Django API (port 8000):
cd django_api_service
python3 manage.py runserver 8000Terminal 2 β start Web UI (Flask + Socket.IO):
cd .. # back to project root (mcp-it-helpdesk)
uv run python start_web_agent.pySet up Django (migrations + import experts)
cd django_api_service
uv run python manage.py makemigrations
uv run python manage.py migrate
uv run python import_experts.py # imports tech_experts.json into DBRun services
# MCP (via Fast Agent)
uv run fast-agent go --stdio "uv run python main.py"
# Django API (serves at http://localhost:8000; root "/" returns 404 by design)
uv run python django_api_service/manage.py runserver
# health check: http://localhost:8000/api/health/
# Web UI (Flask, serves at http://localhost:5001)
uv run python web_agent.py
# open http://localhost:5001Notes:
API routes live under
/api/(e.g.,/api/health/,/api/issues/). The root/returns 404 by design.The web frontend at
http://localhost:5001calls the API athttp://localhost:8000by default.
π§± Architecture
Web UI (Flask/Socket.IO) Django API (REST + ORM) MCP Server (main.py)
β β β
β create/assign issues (HTTP) β β
ββββββββββββββββΊ /api/issues/ ββββΌβββββββββββ β
β β β
βΌ β β
SQLite (Issues, Experts) β
β² β
βββ load experts βββββποΈ File Structure
mcp-it-helpdesk/
ββ main.py # MCP server with tools
ββ problems.txt # Legacy issue store (MCP-only)
ββ tech_experts.json # Legacy sample; data is stored in Django DB
ββ web_agent.py # Flask web chat
ββ templates/index.html # Web UI
ββ django_api_service/
β ββ api/settings.py # Django settings
β ββ manage.py
β ββ issues/
β ββ models.py # Issue, Expert models
β ββ serializers.py # Validation + Gemini integration
β ββ views.py # REST endpoints and actions
β ββ migrations/ # Django migrations
ββ docs/images/ # (add your screenshots/diagrams here)π Comprehensive Documentation
Detailed Features and Benefits
Bilingual understanding (TR/EN): Reduces back-and-forth with users
AI-first classification: Requires Gemini key; ensures consistent, accurate categorization
Human-in-the-loop: Assign experts for high/critical cases or when AI canβt resolve
Installation Guide (Step-by-Step)
Install dependencies with
uv syncRun Django migrations and import experts (see Quick Start)
Launch MCP, Django API, and the Web UI
Test with the usage examples below
Practical Usage Examples
Inside Fast Agent:
/tools
/call main-add_issue {"employee_id":"E001","description":"VPN baΔlantΔ± sorunu","category":"network","subcategory":"vpn","priority":"medium"}
/call main-ai_try_solve {"description":"VPN baΔlantΔ± sorunu","category":"network","subcategory":"vpn","priority":"medium"}
/call main-process_issuesβοΈ Advanced Configuration
Gemini model: Set
GEMINI_MODELenv (default:gemini-1.5-flash)API Keys (required): Provide
GEMINI_API_KEYorGOOGLE_API_KEY. The app mapsGEMINI_API_KEYtoGOOGLE_API_KEYautomatically.CORS:
settings.pyallowshttp://localhost:5001for the web UI; adjust for productionSecrets & DB:
.gitignoreexcludes local DBs and secrets; use.envfiles locally (donβt commit)
π§ Design Philosophy
LLM-first: Classification and validation are fully AI-driven
Single Source of Truth for Experts: Experts live in Django DB (no runtime JSON fallback)
π§ͺ Testing Ideas
Unit test serializers and classification (LLM prompts and outputs)
Integration test Django actions that shell into MCP (
assign_expert,ai_solve)E2E test via Web UI: create issue β assign expert β verify DB state
π³ Docker
Official Image
Pull and run:
docker pull minasenel/mcp-it-helpdesk:latest
docker run --rm --name mcp_api -p 8000:8000 \
-e GEMINI_API_KEY="<your_key>" \
minasenel/mcp-it-helpdesk:latest
# open http://localhost:8000/api/health/If port 8000 is busy on your host, map another host port:
docker run --rm --name mcp_api -p 8001:8000 \
-e GEMINI_API_KEY="<your_key>" \
minasenel/mcp-it-helpdesk:latest
# then use http://localhost:8001Notes:
API routes live under
/api/. The root/returns 404 by design.The frontend typically runs at
http://localhost:5001and talks to the API athttp://localhost:8000.
Environment Variables
GEMINI_API_KEYorGOOGLE_API_KEY(required)SECRET_KEY(recommended for production; generated if missing in dev)DJANGO_ALLOWED_HOSTS(set domains for production)
Examples:
docker run --rm -p 8000:8000 \
-e GEMINI_API_KEY="<your_key>" \
-e DJANGO_ALLOWED_HOSTS="localhost,127.0.0.1" \
-e SECRET_KEY="change-me" \
minasenel/mcp-it-helpdesk:latestData Persistence
The image uses SQLite by default inside the container. Data will be ephemeral unless you mount a volume:
# Persist the Django project folder (including db.sqlite3)
docker run --rm -p 8000:8000 \
-e GEMINI_API_KEY="<your_key>" \
-v "$PWD/django_data":/app/django_api_service \
minasenel/mcp-it-helpdesk:latestBuild locally (optional)
If you prefer to build from source:
# from repo root
docker build -t YOUR_USERNAME/mcp-it-helpdesk:latest .
docker run --rm -p 8000:8000 \
-e GEMINI_API_KEY="<your_key>" \
YOUR_USERNAME/mcp-it-helpdesk:latestLicensed under MIT.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minasenel/mcp-it-helpdesk'
If you have feedback or need assistance with the MCP directory API, please join our Discord server