Courses MCP Server
Click on "Deploy 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., "@Courses MCP Serverlist my current semester courses"
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.
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: Judicature MCP
Installation
Clone or copy this repository into your chosen directory.
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 |
|
AGY (CLI) |
|
AGY (IDE / 2.0) |
|
OpenCode |
|
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-httpand point the client tohttp://host:8000/mcp.
Exposed MCP Tools
login– Performs CTU login using credentials from the local.envfile, and writes the retrieved cookies to the.envfile 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)
This server cannot be deployed
Maintenance
Related MCP Connectors
Web search, URL content extraction to Markdown, site mapping, and recursive web crawler.
Fetch pages as markdown, search web and news, extract structured data. For AI agents.
Web data tools for AI agents: pages as markdown, search, maps, commerce, jobs, AI answers.
Web search, fetch, extract, and research for AI agents. Markdown output + AI-synthesized answers.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to access and search MkDocs documentation through tools for full-text search, page navigation, and code block extraction. It serves documentation pages as readable resources and provides structural outlines to help LLMs navigate documentation content.MIT
- AlicenseNot gradedqualityDmaintenanceEnables searching the ak-vrana.cz website for articles by keywords and extracting webpage content to Markdown format.1MIT
- FlicenseAqualityDmaintenanceEnables LLMs to fetch and process web page contents by providing tools to retrieve raw HTML, extract clean text, and convert web pages to markdown format.3-
- FlicenseNot gradedqualityBmaintenanceScrapes course materials, exam variants, and notes from Fit-Wiki, converting them to Markdown and PDF for integration with LLM clients.-