Skip to main content
Glama
Dzendys

Courses MCP Server

by Dzendys

Courses MCP Server

An MCP (Model Context Protocol) server designed for the Faculty of Information Technology, Czech Technical University (FIT CTU) course materials site: courses.fit.cvut.cz.

It enables LLMs (such as Claude, AGY, or Open WebUI) to list subjects, navigate their subpages (lectures, labs, exams), read materials converted to clean Markdown, and perform quick keyword searches across subjects.


Features

  • Dual Authentication: Supports logging in using pre-fetched browser session cookies or CTU credentials (username and password) with fully automatic cookie status detection, renewal, and persistence.

  • Enrolled Semester Courses: Detects and lists subjects currently enrolled by the student.

  • Static Site Navigation: Crawls and resolves the navigation sidebar (PagesFIT/MkDocs) of any course.

  • Clean Markdown: Isolates primary content sections (e.g. <main>, <article>) and converts them to readable, clean Markdown.

  • Indexed Keyword Search: Iterates through course pages and searches for keywords, with local caching to speed up consecutive searches.


Related MCP server: MkDocs MCP Server

Installation

  1. Clone or copy this repository into your chosen directory.

  2. Initialize the Python virtual environment and install the required dependencies:

    python3 -m venv venv
    ./venv/bin/pip install -r requirements.txt

Configuration

Duplicate the .env.example file to .env and set up your preferred authentication method:

# OPTION 1: Set session cookies directly (Recommended if you use MFA)
COURSES_COOKIES="oauth_access_token=YOUR_ACCESS_TOKEN; oauth_refresh_token=YOUR_REFRESH_TOKEN; oauth_username=YOUR_USERNAME"

# OPTION 2: Set credentials for automatic OAuth login handshake
COURSES_USERNAME="YOUR_CTU_USERNAME"
COURSES_PASSWORD="YOUR_CTU_PASSWORD"

MCP Server Setup

The MCP server exposes Fit-Courses tools to LLM clients. It runs via stdio or streamable-http.

Client Configuration

Add the following to your client's MCP configuration file. Cookies are loaded from the .env file (see .env.example).

{
  "mcpServers": {
    "courses": {
      "command": "/path/to/courses/venv/bin/python",
      "args": ["/path/to/courses/mcp_server.py"]
    }
  }
}

Config File Locations

Client

Path

Claude Desktop

~/.config/Claude/claude_desktop_config.json

AGY (CLI)

~/.gemini/antigravity-cli/mcp_config.json

AGY (IDE / 2.0)

~/.gemini/config/mcp_config.json

OpenCode

.opencode.json in the workspace root

Restart the client after saving.

Transports

  • stdio (default) – the client spawns the server as a subprocess. Use for Claude Desktop, AGY, OpenCode.

  • streamable-http – for Docker or remote setups. Set MCP_TRANSPORT=streamable-http and point the client to http://host:8000/mcp.


Exposed MCP Tools

  • login – Performs CTU login using credentials from the local .env file, and writes the retrieved cookies to the .env file for automatic persistent logins (parameterless).

  • list_courses – Lists subjects taught at FIT. If authenticated, separates your current semester courses from all other catalog subjects.

  • get_course_index – Retrieves all available subpages (paths and titles) from the sidebar menu of a course.

  • get_page_content – Fetches a specific course subpage and returns its main section in Markdown format.

  • search_course_content – Scrapes (or reads from cache) all pages of a course and returns matching search snippets.

  • download_course_file – Downloads any linked slide (PDF), code, or file from the course portal.

Note: None of the tools require passing session cookies manually; authentication status is detected on the fly and expired cookies are automatically renewed and persisted to the .env file.


Exposed MCP Resources

The server exposes the following read-only resources:

  • courses://list – Returns the list of subjects/courses.

  • courses://{course_code}/index – Returns the navigation index sidebar of a subject.

  • courses://{course_code}/pages/{page_path} – Returns the content of a specific course subpage in Markdown. (Note: For nested paths, URL-encode the slashes as %2F, e.g., lectures%2Findex.html)

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.

  • Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.

  • Jina AI Reader/Search MCP — turn any URL into clean LLM-ready markdown, plus web search.

View all MCP Connectors

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/Dzendys/courses-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server