drio
Open app

EduBase MCP server

Source

The EduBase MCP server enables Claude and other LLMs to interact with EduBase's comprehensive e-learning platform through the Model Context Protocol (MCP).

Catalog onlyCatalog onlySTDIO

Overview

EduBase MCP is a server that enables interaction between Claude and other LLMs with EduBase's comprehensive e-learning platform through the Model Context Protocol (MCP).

To use EduBase MCP, integrate it with your application by configuring the MCP server settings in your claude_desktop_config.json or via Docker, providing your EduBase API credentials.

  • Facilitates communication between LLMs and EduBase platform. - Supports advanced quiz systems with real-time cheating detection. - Provides a unified learning environment for educational content. - Offers enterprise-grade security and integration options. - Includes AI-assisted tools for content transformation and translation.
  1. Enhancing online learning experiences with AI.
  2. Automating educational assessments and quizzes.
  3. Integrating existing educational systems with EduBase.

Add to your AI client

Use these steps to connect EduBase MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-edubase": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edubase"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-edubase": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edubase"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-edubase": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edubase"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-edubase": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edubase"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-edubase": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edubase"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-edubase": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edubase"
      ]
    }
  }
}

FAQ

Can EduBase MCP be used with any LLM?

Yes! EduBase MCP is designed to work with various LLMs, including Claude.

Is there a cost associated with using EduBase MCP?

EduBase MCP is free to use for registered EduBase users.

How do I obtain my API credentials?

After logging in, navigate to the Integrations menu on your Dashboard to add the EduBase API integration and obtain your credentials.