
EduBase MCP server
This repository contains the implementation of the Model Context Protocol (MCP) server for the EduBase platform. It allows MCP clients (for example Claude Desktop) and LLMs to interact with your EduBase account and perform tasks on your behalf.
What is EduBase?
EduBase is an innovative, modular, online educational platform that makes learning more enjoyable, simpler and interactive, suitable for educational institutions or enterprises.
Why choose EduBase?
EduBase revolutionizes digital learning with its unique combination of features:
- Advanced Quiz System with parametrization allowing infinite variations of the same question, real-time cheating detection, beautiful LaTeX typesetting, advanced STEM-support and automatic grading
- Unified Learning Environment that centralizes all your educational content — videos, exams, documents, and SCORM modules — in one intuitive system
- Enterprise-Grade Security with features like SSO integration, fine-grained access controls, comprehensive auditing, and GDPR compliance
- Integration with your existing systems through LTI, comprehensive API, and custom integration options
- AI-Assisted Tools, such as EduBase Assistant, that can instantly transform your existing content into interactive quizzes and assessments, or translate your materials from one language to another
From higher education institutions to corporate training departments, EduBase scales to meet your specific needs while maintaining an intuitive user experience across all devices.
Demo video
Collaboratively creating and uploading questions, scheduling exams and analyzing user results with Claude:

Obtaining your API credentials
Once logged in, on your Dashboard, search for the Integrations menu, click "add integration" and choose the type "EduBase API".

If you don't see this option, feel free to contact us to request access at [email protected].
Tools
Each documented API endpoint is available as a separate tool, named edubase_<method>_<endpoint>
. For example, the tool for the GET /user
endpoint is named edubase_get_user
. See our developer documentation for more information.
Usage with Claude Desktop
Add the following to your claude_desktop_config.json
:
node
1{ 2 "mcpServers": { 3 "edubase": { 4 "command": "node", 5 "args": [ 6 "/path/to/dist/index.js" 7 ], 8 "env": { 9 "EDUBASE_API_URL": "https://domain.edubase.net/api", 10 "EDUBASE_API_APP": "your_integration_app_id", 11 "EDUBASE_API_KEY": "your_integration_secret_key" 12 } 13 } 14 } 15}
docker
1{ 2 "mcpServers": { 3 "edubase": { 4 "command": "docker", 5 "args": [ 6 "run", 7 "-i", 8 "--rm", 9 "-e", 10 "EDUBASE_API_URL", 11 "-e", 12 "EDUBASE_API_APP", 13 "-e", 14 "EDUBASE_API_KEY", 15 "edubase/mcp" 16 ], 17 "env": { 18 "EDUBASE_API_URL": "https://domain.edubase.net/api", 19 "EDUBASE_API_APP": "your_integration_app_id", 20 "EDUBASE_API_KEY": "your_integration_secret_key" 21 } 22 } 23 } 24}
Contact
Website: www.edubase.net
Developer Documentation: developer.edubase.net
Email: [email protected]