A Model Context Protocol (MCP) server for the Open eClass platform.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"eclass-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for interacting with the Open eClass platform, with support for UoA's SSO authentication.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
A Model Context Protocol server for searching and analyzing arXiv papers
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
A MCP server that integrates the Semantic Scholar API and the arXiv API so AI assistants (e.g. Claude Code, Cursor) can search and fetch academic paper metadata.
MCP server that uses arxiv-to-prompt to fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions in scientific papers.
MCP Security Weekly
Get CVE alerts and security updates for Eclass Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for interacting with the Open eClass platform, with support for UoA's SSO authentication.
git clone https://github.com/sdi2200262/eclass-mcp-server.git
cd eclass-mcp-server
uv sync --dev --all-extras
Create a .env file (or copy example.env):
ECLASS_USERNAME=your_username
ECLASS_PASSWORD=your_password
Optional settings:
ECLASS_URL=https://eclass.uoa.gr # Default
ECLASS_SSO_DOMAIN=sso.uoa.gr # Default
ECLASS_SSO_PROTOCOL=https # Default
# Using the entry point script
python run_server.py
# Or as a module
python -m src.eclass_mcp_server.server
To use this MCP server with Claude Desktop, VS Code, Cursor, or any MCP-compatible client, configure your client to run:
python3 /absolute/path/to/eclass-mcp-server/run_server.py
Set the following environment variables in your client's MCP configuration:
{
"env": {
"ECLASS_USERNAME": "your_username",
"ECLASS_PASSWORD": "your_password"
}
}
Optional environment variables:
ECLASS_URL - OpenEclass instance URL (default: https://eclass.uoa.gr)ECLASS_SSO_DOMAIN - SSO domain (default: sso.uoa.gr)ECLASS_SSO_PROTOCOL - SSO protocol (default: https)Refer to your specific client's documentation for how to add MCP servers to your configuration.
| Tool | Description |
|---|---|
login | Authenticate using credentials from .env |
get_courses | Retrieve enrolled courses (requires login) |
logout | End the current session |
authstatus | Check authentication status |
All tools use a dummy random_string parameter (MCP protocol requirement).
For non-MCP usage, a standalone client is included:
python eclass_client.py
This demonstrates the core functionality without MCP integration. See docs/architecture.md for details.
eclass-mcp-server/
├── run_server.py # Entry point
├── eclass_client.py # Standalone client (non-MCP)
├── src/eclass_mcp_server/ # Main package
│ ├── server.py # MCP server and tool handlers
│ ├── authentication.py # SSO authentication
│ ├── course_management.py # Course operations
│ └── html_parsing.py # HTML parsing utilities
└── docs/ # Documentation
.env onlyGNU GPL v3.0 - This ensures transparency in credential handling.