fitwiki-mcp
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., "@fitwiki-mcpScrape course BI-OOP to Markdown"
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.
FitWiki MCP Server
An MCP (Model Context Protocol) server designed for the student-run Faculty of Information Technology, Czech Technical University (FIT CTU) community wiki: fit-wiki.cz.
It enables LLMs (such as Claude, AGY, or Open WebUI) to list subjects documented on the student wiki, navigate their sections (exams, tests, homework), download pages and attachments, and read study materials converted to clean Markdown.
Features
Automated Scraping & Sanitization: Downloads community wiki pages, handles media/image assets, and converts the content into readable, clean Markdown.
Direct Attachment Handling: Intercepts binary attachments (like ZIPs, RARs, PDFs) and downloads them natively, bypassing markdown wrappers.
Document Compiling: Compiles scraped Markdown pages into high-quality offline PDF documents.
Intelligent Cache & Category Detection: Automatically groups wiki pages into categories (exams, tests, labs) using advanced namespace mapping and maintains a local cache to avoid redundant requests.
Related MCP server: Deepwiki 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 authentication cookies:
# Fit-Wiki Scraper & MCP Server Configuration
# DokuWiki session cookies (retrieve these from your browser developer console)
FITWIKI_COOKIES="DokuWiki=your-session-cookie"
# Target course URL
# FITWIKI_BASE_URL="https://fit-wiki.cz"
# Scraping delay in seconds between requests (prevents being rate-limited/blocked)
# FITWIKI_DELAY=1.0CLI Usage
You can run the scraper directly from the command line using the provided scripts:
1. Scrape a Course to Markdown
./venv/bin/python scraper.py [course_code]If you provide a course code (e.g. bi-osy), the scraper downloads the index page, parses it, and lets you choose categories to scrape. If run without arguments, it attempts to read an existing index-page.html from the workspace.
2. Convert Markdown to PDF
./venv/bin/python convert_to_pdf.pyCompiles all downloaded markdown pages under markdown_output/ into PDF files in the pdfs/ directory.
MCP Server Setup
The MCP server exposes Fit-Wiki 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": {
"fitwiki": {
"command": "/path/to/fitwiki/venv/bin/python",
"args": ["/path/to/fitwiki/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
list_courses– List all courses documented on the student wiki.list_course_sections– List sections (e.g.zkouska,test1) for a course.list_section_pages– List pages within specific sections.download_page– Scrape a page to Markdown and compile to PDF in one step.compile_pdf– Compile a Markdown file to PDF.compile_category_pdfs– Compile all Markdown files in a category to PDFs.read_saved_file– Read a previously saved Markdown file by path.scrape_index– Parse a course index and list discovered links.scrape_page– Scrape a single page to Markdown and return its content.scrape_course– Download all pages in selected categories for a course.
Exposed MCP Resources
The server exposes the following read-only resources:
fitwiki://list– Returns the list of subjects/courses documented on the student wiki.fitwiki://{course_code}/sections– Returns the sections/categories for a given course.fitwiki://{course_code}/sections/{section}– Returns the pages in a specific section.fitwiki://{course_code}/sections/{section}/{slug}– Returns the content of a saved markdown page.
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.
Related MCP Servers
- Flicense-qualityDmaintenanceConverts web-based documentation into markdown format using jina.ai's conversion service, allowing users to scrape documentation from any URL and save it as markdown files.Last updated10
- AlicenseBqualityDmaintenanceCrawls and converts DeepWiki documentation pages into Markdown format, enabling retrieval of complete documentation or specific pages from repositories. Note: Currently not functional due to DeepWiki scraping restrictions.Last updated133MIT
- Alicense-qualityFmaintenanceEnables creation of persistent, compounding knowledge bases using Karpathy's LLM Wiki pattern with LLM-maintained markdown wikis. Supports automated ingestion, cross-referencing, synthesis, and linting of sources as an alternative to traditional RAG systems.Last updated61MIT
- Alicense-qualityCmaintenanceScrapes the Opportunity Party website and converts policy PDFs to structured markdown for LLM consumption.Last updatedMIT
Related MCP Connectors
Web scraping for AI agents. Converts URLs to clean, LLM-ready Markdown with anti-bot bypass.
Converts any URL to clean, LLM-ready Markdown using real Chrome browsers
Fetch any URL and get clean Markdown. Web scraping for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/fitwiki-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server