Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

NCCU Course

БесплатноНе проверен

Enables searching and retrieving course listings, departments, and syllabi from National Chengchi University's public course API using natural language.

GitHubEmbed

Описание

Enables searching and retrieving course listings, departments, and syllabi from National Chengchi University's public course API using natural language.

README

An MCP server for querying NCCU (National Chengchi University) course listings (qrysub.nccu.edu.tw) programmatically, so an AI assistant or a student can search courses in plain language instead of fighting the web UI.

Course data is fetched live from the public course API on every query; there is no local course database. The only shipped data file is dept_codes.json, a snapshot mapping department codes to names (regenerate any time with build_dept_codes.py).

Tools

  • list_departments(query=""): list department codes/names/levels; filter by a name substring.
  • search_courses(semester, dept, keyword=""): courses for a department in a term.
    • semester: academic-year + term, e.g. 1151 = AY115 term 1.
    • dept: department name or 3-digit code (e.g. 財務管理學系 or 357).
    • keyword: optional; filter by course name / teacher / notes.
    • each course includes a syllabus_url.
  • get_syllabus(syllabus_url): fetch a course's full syllabus as plain text (description, objectives, learning outcomes, weekly schedule). Restricted to nccu.edu.tw URLs.

Install

Using Claude Code? Paste this repo's URL and say "install this MCP server", and it will read the command below and run it for you. Otherwise, copy one command.

Recommended: no clone, no venv (needs uv)

Runs straight from GitHub for Claude Code:

claude mcp add nccu-course -- uvx --from git+https://github.com/yyu0310/nccu-course-mcp nccu-course-mcp

Don't have uv? Install it once: curl -LsSf https://astral.sh/uv/install.sh | sh

No-uv fallback: pip only

Works with any Python 3.10+ (uses pipx to keep it isolated):

pipx install git+https://github.com/yyu0310/nccu-course-mcp
claude mcp add nccu-course -- nccu-course-mcp

Or add to any MCP client's config (e.g. Claude Desktop claude_desktop_config.json):

{
  "mcpServers": {
    "nccu-course": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/yyu0310/nccu-course-mcp", "nccu-course-mcp"]
    }
  }
}

From source

git clone https://github.com/yyu0310/nccu-course-mcp && cd nccu-course-mcp
python -m venv .venv && ./.venv/bin/pip install -e .
./.venv/bin/python src/nccu_course_mcp/test_server.py   # live self-test
claude mcp add nccu-course -- ./.venv/bin/nccu-course-mcp

Notes

  • The upstream server uses legacy TLS renegotiation; the client enables OP_LEGACY_SERVER_CONNECT to connect.
  • Broad queries are capped at 500 rows upstream, so queries are always scoped per department.
  • Uses only NCCU's public course catalog. It touches no private system and no login.

from github.com/yyu0310/nccu-course-mcp

Установка NCCU Course

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/yyu0310/nccu-course-mcp

FAQ

NCCU Course MCP бесплатный?

Да, NCCU Course MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для NCCU Course?

Нет, NCCU Course работает без API-ключей и переменных окружения.

NCCU Course — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить NCCU Course в Claude Desktop, Claude Code или Cursor?

Открой NCCU Course на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare NCCU Course with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development