MCP Tutor MCP Server

An experimental system that transforms documentation repositories into interactive educational content using AI and the Model Context Protocol (MCP).

Local serverstdioPython

What is the MCP Tutor MCP server?

Mcp tutor mcp server connects MCP Tutor to AI assistants that speak the Model Context Protocol. An experimental system that transforms documentation repositories into interactive educational content using AI and the Model Context Protocol (MCP).

What MCP Tutor does

An experimental system that transforms documentation repositories into interactive educational content using AI and the Model Context Protocol (MCP).

Tools it exposes

Once connected, the assistant can call these 4 tools directly:

  • Multi — complexity course creation (beginner/intermediate/advanced)
  • Protocol — Model Context Protocol (MCP) for standardization
  • Models — Gemini 2.5 Flash for content generation
  • Data — Pydantic models for type safety

Installing the mcp tutor mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

The server reads one environment variable: COURSE_DIR. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Knowledge and memory servers address the most frustrating trait of language models — walking into every conversation with no recollection of the last one. MCP Tutor sits in that group, and the shape of its toolset — Multi, Protocol, Models among others — tells you what it is really for. Worth comparing against the other knowledge memory servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Maintained by moarshy, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp tutor mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Multicomplexity course creation (beginner/intermediate/advanced)
ProtocolModel Context Protocol (MCP) for standardization
ModelsGemini 2.5 Flash for content generation
DataPydantic models for type safety

How to install the MCP Tutor MCP server

{
    "mcpServers": {
        "educational-tutor": {
            "command": "/path/to/tutor/project/.venv/bin/uv",
            "args": [
                "--directory",
                "/path/to/tutor/project",
                "run",
                "mcp_server/main.py"
            ],
            "env": {
                "COURSE_DIR": "/path/to/tutor/project/course_output"
            }
        }
    }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
COURSE_DIRFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use MCP Tutor to Multi.
  • Use MCP Tutor to Protocol.
  • Use MCP Tutor to Models.

Frequently asked questions

It connects MCP Tutor to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Multi, Protocol, Models, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Tutor directly.