Courses MCP Server
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., "@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 Cline, Cursor, 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 automatic cookie 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
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=...; oauth_refresh_token=...; oauth_username=your-username"
# OPTION 2: Set credentials for automatic OAuth login handshake
COURSES_USERNAME="your-username"
COURSES_PASSWORD="your-ctu-password"Registered MCP Tools
The server exposes the following tools:
login(username, password): Performs CTU login, updates session cookies, and writes the retrieved cookies to the.envfile for automatic persistent logins.list_courses(cookies): Lists subjects taught at FIT. If authenticated, separates your current semester courses from all other catalog subjects.get_course_index(course_code): Retrieves all available subpages (paths and titles) from the sidebar menu of a course.get_page_content(course_code, page_path): Fetches a specific course subpage and returns its main section in Markdown format.search_course_content(course_code, query): Scrapes (or reads from cache) all pages of a course and returns matching search snippets.download_course_file(course_code, file_path, cookies): Downloads any linked slide (PDF), code, or file from the course portal.
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)
Global MCP Integration
Add this configuration to your local MCP client settings (e.g. mcp_config.json):
{
"mcpServers": {
"courses": {
"command": "/home/dzendys_/Downloads/courses/venv/bin/python",
"args": ["/home/dzendys_/Downloads/courses/mcp_server.py"]
}
}
}License
Created for educational and utility purposes for students and teachers of FIT ČVUT.
This server cannot be installed
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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