SkillOps MCP
Integrates with Google Gemini API to classify support tickets, generate re-engagement messages, analyze course feedback, produce cohort reports, and create course outlines for EdTech operations.
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., "@SkillOps MCPTriage: 'I paid but can't open the videos!'"
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.
๐ฏ SkillOps MCP
AI-powered operations automation for EdTech teams. Five Model Context Protocol tools that turn hours of repetitive weekly busywork โ support triage, re-engagement outreach, feedback analysis, progress reporting, and course design โ into a single sentence typed into any MCP client.
๐ Table of Contents
Related MCP server: Educhain MCP Server
๐งญ What is SkillOps MCP?
EdTech operations, growth, and product teams spend hours every week on repetitive, judgment-light work:
๐จ Reading and categorizing every incoming support ticket
โ๏ธ Hand-writing re-engagement emails for students who went quiet
๐ Skimming hundreds of feedback comments to find what to fix
๐ Assembling the weekly cohort progress report
๐๏ธ Drafting course outlines from a blank page
It's necessary work, but it scales linearly with headcount and quietly burns people out.
SkillOps MCP turns each of those into a single command. It's a server that exposes five purpose-built tools to any MCP client (Claude Desktop, Claude Code, or others). A support lead pastes a ticket and gets an instant triage with a ready-to-send reply. A growth manager generates a personalized win-back message in seconds. A product manager drops in a batch of feedback and gets a structured, prioritized analysis.
The design principle is "deterministic work in code, language work in the model." Anything that must be correct โ cohort averages, at-risk thresholds, CSV parsing, input validation โ is computed in plain Python so the numbers are never hallucinated. Only the genuinely language-shaped work (writing, classifying, summarizing) is delegated to the LLM. That LLM is Google's Gemini, running free on gemini-2.5-flash via the Google AI Studio free tier โ no credit card required.
๐ What is MCP? (60-second primer)
The Model Context Protocol (MCP) is an open standard (created by Anthropic) that lets AI assistants call external tools in a uniform way โ think of it as "USB-C for AI tools." Instead of every app inventing its own plugin format, a single MCP server exposes tools that any MCP client can discover and call.
You โโtalkโโโถ MCP CLIENT โโMCP protocolโโโถ MCP SERVER โโโถ your code
(English) (Claude Desktop, (JSON-RPC over (this project)
Claude Codeโฆ) stdio)You type plain English into the client.
The client (an AI assistant) decides which tool to call and with what arguments.
The server (this project) runs the tool and returns a result.
You never speak the protocol yourself โ the client translates your English into a tool call for you. SkillOps MCP is the server half: it provides the five EdTech tools; you bring any MCP client to drive them.
๐ ๏ธ The five tools
# | Tool | What it does | Example you'd type |
1 |
| Classifies a support ticket (category + urgency), drafts an empathetic reply, and flags whether a human is needed. | "Triage: 'I paid but can't open the videos!'" |
2 |
| Writes a personalized email + WhatsApp win-back message for an inactive student. | "Re-engage Priya โ 12 days inactive, 45% through Web Dev." |
3 |
| Turns a batch of raw feedback into sentiment scores, themes, complaints, praises, and prioritized fixes. | "Analyze these 40 reviews for the Python course." |
4 |
| Computes cohort metrics in Python, then has the model write the weekly narrative report. | "Weekly report from students.csv for the Spring cohort." |
5 |
| Produces a full course outline: modules, lessons, durations, projects, assessments. | "Outline an 8-week beginner 'Intro to SQL' course." |
Full input/output details for each are in the Tool reference.
๐๏ธ Architecture
SkillOps MCP is built in clean, testable layers. Each layer has one job and is independently verifiable.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP CLIENT (Claude Desktop ยท Claude Code ยท any MCP client) โ
โ You type plain English here. The client picks the tool + args. โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP protocol (JSON-RPC over stdio)
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ SERVER LAYER src/skillops_mcp/server.py โ
โ โข FastMCP app, name = "SkillOps MCP" โ
โ โข 5 thin @mcp.tool adapters (docstrings become tool descriptions)โ
โ โข Loads .env, configures stderr logging, then mcp.run() โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ TOOL LAYER src/skillops_mcp/tools/*.py โ
โ Each tool: validate input โ build prompt โ call model โ format โ
โ โข support ยท outreach ยท feedback ยท reports ยท curriculum โ
โ โข reports.py computes all metrics in PURE PYTHON (no LLM math) โ
โโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโ
โผ โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MODELS models/ โ โ UTILS utils/ โ
โ schemas.py โ โ gemini_client.py โ API wrapper โ
โ Pydantic v2 input models โ โ (retries, JSON mode, logging) โ
โ + enums (urgency, etc.) โ โ formatters.py โ text rendering โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโ
โ Google Gemini API (free tier)
โผ
gemini-2.5-flashLayer responsibilities
Layer | File(s) | Responsibility |
Server |
| Speaks MCP. Registers the 5 tools, each as a thin adapter whose docstring is shown to the AI as the tool's description. Logs to stderr (never stdout โ that would corrupt the stdio transport). |
Tools |
| The actual work. Each follows the same shape: validate โ prompt โ call โ format. |
Models |
| Pydantic v2 models enforce every tool's input contract (required fields, enums, numeric bounds) before any API call. Bad input becomes a friendly |
Gemini client |
| One place for all LLM calls: exponential-backoff retries on 429/5xx, fails fast on 4xx, Gemini-native JSON mode, strict parsing, and structured logging on every call. |
Formatters |
| Turns structured data into the clean, plain-text reports you see in chat. |
Key design choices
๐งฎ Numbers are computed, not generated. In
batch_generate_reports, averages, at-risk lists, top performers, and assignment rates are calculated in Python. The model only writes the narrative around those facts โ so a report can never invent a statistic.๐ก๏ธ Validation before spend. Pydantic rejects bad input before a single token is sent, saving API calls and returning precise error messages.
๐๏ธ No database. Everything is in-memory; reports read from inline data or a CSV path. Zero infrastructure to run.
๐ One client, one retry policy. Every tool calls the same
GeminiClient, so resilience and logging are uniform.
๐ How a request flows (step by step)
Take "Triage this ticket: 'I paid but can't open the videos!'"
You type that into your MCP client (e.g. Claude Code).
The client recognizes it matches the
triage_support_querytool and calls the server over stdio with{ "query": "I paid but can't open the videos!" }.server.pyreceives the call and forwards it totools/support.py.support.pyvalidates the input with theSupportQueryInputPydantic model. (Blank/empty โ instantError:string, no API call.)It builds a system + user prompt and calls
GeminiClient.call_json(...).gemini_client.pysends the request to Gemini in JSON mode, retrying on rate limits / server errors, and parses the JSON reply into a dict.support.pyformats that dict into the readable triage report viaformatters.py.The string travels back through the server โ client โ and appears in your chat.
Total time: a couple of seconds. Total cost on the free tier: $0.
๐งฐ Tech stack
Concern | Choice | Why |
Language | Python 3.11+ | Modern typing, broad availability |
MCP framework | FastMCP | Minimal, decorator-based MCP servers |
LLM | Google Gemini ( | Free tier, fast, native JSON output |
Validation | Pydantic v2 | Declarative input contracts, great errors |
Config | python-dotenv |
|
Data | Built-in csv / json | No heavy deps for parsing |
Logging | Built-in logging | Structured, stderr-safe |
Testing | pytest + pytest-asyncio | Fast, fully mocked, offline |
๐ Project structure
skillops-mcp/
โโโ src/
โ โโโ skillops_mcp/
โ โโโ __init__.py
โ โโโ server.py # MCP entry point โ registers all 5 tools
โ โโโ tools/
โ โ โโโ support.py # triage_support_query
โ โ โโโ outreach.py # generate_reengagement_message
โ โ โโโ feedback.py # analyze_course_feedback
โ โ โโโ reports.py # batch_generate_reports (Python metrics + narrative)
โ โ โโโ curriculum.py # create_course_outline
โ โโโ models/
โ โ โโโ schemas.py # Pydantic v2 input models + enums
โ โโโ utils/
โ โโโ gemini_client.py # Gemini API wrapper: retries, JSON mode, logging
โ โโโ formatters.py # Plain-text output rendering helpers
โโโ tests/
โ โโโ conftest.py # mock_client fixture; API-key isolation
โ โโโ test_support.py
โ โโโ test_outreach.py
โ โโโ test_feedback.py
โ โโโ test_reports.py
โ โโโ test_curriculum.py
โโโ examples/
โ โโโ sample_feedback.json # 10 feedback strings for the feedback tool
โ โโโ sample_students.csv # 7 student rows for the reports tool
โ โโโ sample_queries.txt # 3 support tickets for the triage tool
โโโ demo.py # interactive terminal demo (no MCP client needed)
โโโ .mcp.json # MCP client config (Claude Code auto-detects it)
โโโ .env.example # copy to .env and add your free Gemini key
โโโ .gitignore # ignores .env (your secret stays local)
โโโ pyproject.toml # package metadata + `skillops-mcp` entry point
โโโ requirements.txt # runtime dependencies
โโโ requirements-dev.txt # + pytest
โโโ README.mdโ Prerequisites
Python 3.11 or newer (
python --version)pip
A free Google Gemini API key (how to get one)
(Optional) An MCP client โ Claude Code or Claude Desktop โ to use the tools conversationally. You can also try everything with the bundled
demo.pyand no client at all.
๐ฆ Installation
# 1. Clone
git clone https://github.com/<your-username>/skillops-mcp.git
cd skillops-mcp
# 2. (Recommended) create a virtual environment
python -m venv .venv && source .venv/bin/activate # Windows: .venv\Scripts\activate
# 3. Install the package (editable) โ this also installs all dependencies
pip install -e .
# For development/tests, also: pip install -r requirements-dev.txt
# 4. Configure your free Gemini key
cp .env.example .env
# then open .env and set GEMINI_API_KEY=...
# 5. Smoke-test it (no API call, fully offline)
pytestpip install -e . registers the package so it's importable from anywhere and creates a skillops-mcp console command. (You can also pip install -r requirements.txt if you prefer not to install the package itself.)
๐ Getting your free Gemini API key
The default engine is Gemini's free tier โ no credit card, no UPI, no billing of any kind.
Sign in with any Google account
Click Create API key โ choose "Create API key in a new project" (Google makes the free project for you)
Copy the key (looks like
AIzaSy...)Paste it into your
.env:GEMINI_API_KEY=AIzaSy...your-key...
Free-tier note: Google AI Studio's free tier has generous per-minute/day rate limits โ plenty for personal use and demos โ and (on the free tier) Google may use prompts to improve its products. For production traffic, enable paid usage in Google Cloud.
โ๏ธ Configuration
All configuration is via environment variables (loaded from .env):
Variable | Required | Default | Purpose |
| โ Yes | โ | Your free Google AI Studio key |
| No |
| Which Gemini model to use (any free-tier Flash model works) |
| No |
|
|
| No |
| Retry attempts on rate-limit / server errors |
The server loads .env from the project root regardless of the directory it's launched from, so MCP clients can start it from anywhere.
๐ How to use it โ three ways
Way 1 โ Quick demo in the terminal (no MCP client needed)
The fastest way to see all five tools working:
python demo.pyThis opens a friendly menu that calls the same tool functions an MCP client would, and prints the output. Great for a first look or a screen-share. (Requires GEMINI_API_KEY in .env.)
Way 2 โ Inside Claude Code (recommended for daily use)
Claude Code auto-detects the committed .mcp.json:
{
"mcpServers": {
"skillops": {
"command": "python",
"args": ["-m", "skillops_mcp.server"]
}
}
}Make sure you ran
pip install -e .(sopython -m skillops_mcp.serverresolves).Reload the editor window so Claude Code re-reads
.mcp.json.Type
/mcpโ you should seeskillopswith its 5 tools. Approve/trust it if prompted.Now just chat in plain English:
"Use the skillops tools to triage this ticket: 'I paid but can't open the videos!'"
Way 3 โ Inside Claude Desktop
Add this to your claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json ยท Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"skillops": {
"command": "python",
"args": ["-m", "skillops_mcp.server"],
"env": {
"GEMINI_API_KEY": "your-free-gemini-key-here"
}
}
}
}Restart Claude Desktop. The five tools appear and you talk to them in plain English.
WSL note: if your Python lives in WSL but Claude Desktop runs on Windows, set
"command": "wsl"and"args": ["python", "-m", "skillops_mcp.server"].
๐ Tool reference
Each tool returns a clean, human-readable string (with a ๐ RAW JSON appendix for power users). You can call them by describing what you want โ the client maps your words to the right tool and arguments.
1. triage_support_query
Analyze a student support message and return a structured triage.
Parameter | Type | Required | Default | Notes |
| string | โ | โ | The raw support message |
| string |
| For personalizing the reply | |
| string |
| The course they're enrolled in |
You type:
Triage this ticket: "I paid but can't open the videos, it's been 2 days!"
You get back (real output):
โ
SUPPORT TRIAGE COMPLETE
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Category: technical_issue
Urgency: high โ Student has paid but is fully blocked from content for two days.
Escalate to Human: Yes โ Payment + access issues need a human to check backend systems.
Estimated Resolution: 1-2 business days
Tags: access_issue, payment_verification, video_access, content_lock
๐ง SUGGESTED RESPONSE:
"Dear Student, I'm very sorry to hear you're having trouble accessing the course
videos despite having paid, especially after two days. Our team is actively
investigating to get you access as quickly as possible, and we'll reach out
shortly with an update. Thank you for your patience."Output fields: category (one of technical_issue, billing, course_content, mentor_support, certificate, refund, general), urgency (critical/high/medium/low), urgency_reason, suggested_response, escalate_to_human, escalation_reason, estimated_resolution_time, tags.
2. generate_reengagement_message
Write a personalized win-back message for an inactive student.
Parameter | Type | Required | Default | Notes |
| string | โ | โ | First name |
| string | โ | โ | Course they enrolled in |
| int | โ | โ | Days since last activity |
| string |
| Last module they finished | |
| float |
| e.g. | |
| string |
|
|
You type:
Generate a re-engagement message for Priya โ 12 days inactive in Web Development, last finished "CSS Basics", 45% complete. Channel: both.
You get back (illustrative):
๐ฌ RE-ENGAGEMENT MESSAGE READY
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ง EMAIL
Subject: You're closer than you think, Priya ๐
Hi Priya, you crushed CSS Basics and you're already 45% through Web Development โ
real momentum, still right where you left it. The next module is where the fun
starts. It takes ~20 minutes to get back in the flow. Want to pick up where you
stopped? โ Resume Module 6: JavaScript Foundations
๐ฑ WHATSAPP
Hey Priya! ๐ You're 45% through Web Dev and CSS Basics is behind you. The next
module is a fun one โ jump back in? Takes ~20 mins ๐
๐ฏ PERSONALIZATION HOOKS:
โข Referenced her 45% progress
โข Named her last completed module (CSS Basics)
โข Lowered the barrier with a "20 minutes" framing
โฐ Recommended send time: Tuesday 10am or Thursday 6pm3. analyze_course_feedback
Analyze a batch of raw feedback in a single model call (not one per item).
Parameter | Type | Required | Default | Notes |
| list[str] | โ | โ | 1โ50 items (extras truncated with a note) |
| string |
| For context | |
| string |
|
|
You type:
Analyze this feedback for Python Basics: [paste the 10 lines from
examples/sample_feedback.json]
You get back (illustrative):
๐ COURSE FEEDBACK ANALYSIS
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Items analyzed: 10
Overall sentiment: positive (score: 0.45)
Breakdown: ๐ 6 | ๐ 1 | ๐ 3
๐งต TOP THEMES:
โข Video length & pacing (ร3, negative) โ "Videos are too longโฆ"
โข Mentor support (ร2, positive) โ "got a response within hours"
โ KEY COMPLAINTS: โข Videos too long โข Need more practice problems
๐ KEY PRAISES: โข Clear instruction โข Real career outcomes
๐ ๏ธ IMPROVEMENT SUGGESTIONS:
โข [high / medium] Split long videos into 5โ8 min segments
โข [high / low] Add a solutions bank for practice problems
๐ EXECUTIVE SUMMARY:
Net-positive sentiment driven by instruction and mentor support; clearest win is
shorter videos and more solved practice problems.4. batch_generate_reports
Generate a weekly cohort report. Metrics are computed in Python; only the narrative comes from the model.
Parameter | Type | Required | Default | Notes |
| string | โ | โ |
|
| list[dict] | conditionally |
| Required when |
| string | conditionally |
| Required when |
| string |
| e.g. | |
| string |
| e.g. |
CSV columns: name, course, completion_pct, last_active_days_ago, quiz_avg_score, assignments_submitted, total_assignments (missing columns are reported clearly; a sample is in examples/sample_students.csv).
You type:
Generate this week's report from
examples/sample_students.csvfor the "Spring Cohort", week "Jun 16โ22, 2026".
You get back (illustrative):
๐ Spring Cohort โ Weekly Progress Report
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Cohort: Spring Cohort | Week: Jun 16โ22, 2026 | Students: 7
๐ COHORT METRICS
Average completion: 58.4% โ computed in Python
Average quiz score: 68.9
Assignment completion: 57.1%
At-risk students: 3
Top performers: 2
โ
RECOMMENDED ACTIONS:
โข [urgent] Personal outreach to Divya Patel (25 days inactive) โ Success Team
โข [this_week] Nudge sequence for Sneha & Priya โ GrowthAt-risk = inactive > 7 days or completion < 30%. Top performer = completion > 80% and quiz avg > 75. These thresholds are pure Python โ never the model's guess.
5. create_course_outline
Generate a complete, structured course outline.
Parameter | Type | Required | Default | Notes |
| string | โ | โ | e.g. |
| string | โ | โ |
|
| int |
| Total weeks | |
| float |
| Study hours/week | |
| string |
|
| |
| bool |
| Include hands-on projects |
You type:
Outline an 8-week beginner course on "Intro to SQL", 5 hrs/week, self-paced, with projects.
You get back (illustrative):
๐ Intro to SQL: Query Real Data with Confidence
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โฑ๏ธ Total: ~40.0 hours
๐ LEARNING OUTCOMES:
โข Write SELECT queries with filtering, sorting, and joins
โข Model a small relational database from scratch
โข Aggregate and report on real datasets
๐ MODULES:
Module 1: SQL Foundations (5.0h)
1. [video] What is a Database? (15 min)
2. [exercise] Your First SELECT (40 min)
โ๏ธ Project: Query a movie database
โ
Module quiz included
...
๐ FINAL PROJECT: Build & query an e-commerce schema end-to-end๐ก๏ธ Error handling
Every tool returns a clean Error: โฆ string instead of crashing the server. The cases handled:
Situation | What you see |
Missing API key |
|
API down after retries |
|
Non-retryable API error (e.g. 400) |
|
Un-parseable model output |
|
Invalid input (empty feedback, bad enum, etc.) |
|
CSV file not found |
|
CSV missing columns |
|
Validation runs before any API call, so bad input fails instantly and for free.
๐งช Testing
The suite is fully offline โ every Gemini call is mocked, so no API key and no network are needed, and it costs nothing.
pip install -r requirements-dev.txt
pytest # 22 tests
pytest -v # verbose
pytest tests/test_reports.py # one fileEach tool is tested for: a valid call (mocked model response), invalid/empty input, and the missing-API-key path. reports.py additionally has tests proving the Python-computed metrics are correct and that CSV errors are handled.
tests/test_curriculum.py ..... tests/test_reports.py ......
tests/test_feedback.py .... tests/test_support.py ...
tests/test_outreach.py .... ===== 22 passed =====๐ Engineering highlights
For reviewers, the parts worth a look:
Deterministic-vs-generative split.
tools/reports.pycomputes every statistic in Python and hands the model only the facts โ a report can't hallucinate a number. This is the project's core design idea.Resilient API client.
utils/gemini_client.pyretries only what's worth retrying (429 + 5xx) with exponential backoff, fails fast on 4xx, uses Gemini's native JSON mode, and logs every call structurally.Validation as a first-class layer.
models/schemas.py(Pydantic v2) enforces every contract before spend; errors are turned into friendly strings, never stack traces.Provider-swappable by design. The entire LLM dependency lives behind one small client class โ the project started on Anthropic Claude and moved to free Gemini by changing one file.
Stdio-safe logging. Logs go to stderr so they never corrupt the MCP stdout transport โ a subtle but real correctness requirement for MCP servers.
Tested, typed, documented. Type hints and docstrings on every function; 22 offline tests; no bare
except; noprint; no hardcoded secrets.
๐งฉ Extending it โ add your own tool
Adding a sixth tool takes three steps:
Define the input model in
models/schemas.py:class MyToolInput(BaseModel): text: str = Field(..., min_length=1)Write the tool in
tools/mytool.pyfollowing the standard shape:def run(text: str, client: GeminiClient | None = None) -> str: try: params = MyToolInput(text=text) except ValidationError as exc: return f"Error: {fmt.validation_message(exc)}" try: client = client or GeminiClient() except MissingAPIKeyError as exc: return f"Error: {exc}" data = client.call_json(SYSTEM_PROMPT, user_prompt, tool_name="my_tool") return _format_output(data)Register it in
server.py:@mcp.tool def my_tool(text: str) -> str: """One-line description the AI will read to decide when to call this.""" return mytool.run(text=text)
Add a tests/test_mytool.py mirroring the existing tests and you're done.
๐ง Troubleshooting
Symptom | Fix |
| Add the key to |
| Run |
| You skipped |
Gemini | Free-tier rate limit โ wait a moment and retry; the client already backs off automatically. |
Server "hangs" when run directly | That's correct โ |
Claude Desktop on Windows can't find Python in WSL | Use |
โ FAQ
Does this cost anything? No. It runs on Gemini's free tier โ no credit card, no UPI. The test suite is free too (fully mocked).
Do I need Claude or Anthropic? No. SkillOps MCP is the server. Any MCP client can drive it โ Claude Code, Claude Desktop, or others. The LLM doing the work inside is Gemini.
Why MCP instead of a REST API or a CLI? Because the value is being inside the tool the team already uses. With MCP, a support lead triages a ticket without leaving their AI chat โ no new app, no copy-pasting into a separate service.
Can I use a different model? Yes โ set GEMINI_MODEL in .env to any free-tier Gemini model. Swapping providers entirely is a one-file change in utils/gemini_client.py.
Is my .env safe to commit? No โ and it's already in .gitignore. Your key stays on your machine.
๐ก Why I built this
The highest-leverage AI automation isn't flashy โ it's the quiet, repetitive operational work that consumes an EdTech team's week. Triaging tickets, chasing inactive learners, reading feedback, and assembling reports are tasks where human judgment matters at the edges but the bulk is mechanical. By packaging that work as MCP tools, it lives directly inside the assistant the team already uses, the deterministic parts stay deterministic, and the model only does the writing. The result turns "an afternoon of busywork" into "a single sentence" โ backed by a clean, tested, provider-agnostic codebase that's easy to extend with the next workflow.
๐ License
Released under the MIT License. See LICENSE (or the badge above) for details.
Maintenance
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/Ultr0nX/skillops-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server