Learning Hub MCP Server

MCP server for student learning workflow with SQLite database. Each instance serves one student — deploy a separate instance per child for isolated

Remote serverstreamable-httpPython

What is the Learning Hub MCP MCP server?

MCP server for student learning workflow with SQLite database. Each instance serves one student — deploy a separate instance per child for isolated, focused AI tutoring. That is what the learning hub mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

  • Subjects — - school subjects with multi-country support (UA, CZ, DE, etc.)
  • Grades — - grade tracking with 5-point European scale (1=best, 5=worst)
  • Topics — - subject topics for improvement tracking
  • Homework — - assignment tracking with deadlines
  • Bonus Tasks — - motivational tasks that reward game minutes
  • Game Minutes — - immutable transaction ledger for tracking earned/spent game time

The tools it exposes

The server publishes 14 tools. What each one is for:

  • get_grade_escalation_instructions — escalate bad grades to tutor/admin
  • get_learning_system_instructions — master instruction: full system rules
  • get_student_request_router_instructions — classify student request (A/B/C scenarios)
  • get_bonus_task_assignment_instructions — assign a new bonus task
  • get_submission_routing_instructions — route submitted work to evaluator
  • get_bonus_task_evaluation_instructions — evaluate completed bonus task
  • get_homework_evaluation_instructions — evaluate homework submission
  • get_book_lookup_instructions — find and deliver textbook pages
  • get_books_workflow_instructions — process and register new books
  • get_homework_manual_instructions — manually add homework (parent only)
  • get_grade_manual_instructions — manually add a grade (adult only)
  • get_student_content_policy_instructions — content safety filtering for external student content

What it needs from you

Configuration is passed through the environment: DATABASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

This sits in the database access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Learning Hub MCP's toolset — get_grade_escalation_instructions, get_learning_system_instructions, get_student_request_router_instructions and 11 more — is a fair guide to whether it matches your workflow. It is maintained by genyk1p; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Learning Hub MCP.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_grade_escalation_instructionsescalate bad grades to tutor/admin
get_learning_system_instructionsmaster instruction: full system rules
get_student_request_router_instructionsclassify student request (A/B/C scenarios)
get_bonus_task_assignment_instructionsassign a new bonus task
get_submission_routing_instructionsroute submitted work to evaluator
get_bonus_task_evaluation_instructionsevaluate completed bonus task
get_homework_evaluation_instructionsevaluate homework submission
get_book_lookup_instructionsfind and deliver textbook pages
get_books_workflow_instructionsprocess and register new books
get_homework_manual_instructionsmanually add homework (parent only)
get_grade_manual_instructionsmanually add a grade (adult only)
get_student_content_policy_instructionscontent safety filtering for external student content
get_topic_review_curation_instructionscurate and close stale topic reviews
get_base_crons_setup_instructionsinstructions for setting up base cron jobs

Configuration

VariableDescriptionRequired
DATABASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Learning Hub MCP to get grade escalation instructions.
  • Use Learning Hub MCP to get learning system instructions.
  • Use Learning Hub MCP to get student request router instructions.

Frequently asked questions

It connects Learning Hub MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_grade_escalation_instructions, get_learning_system_instructions, get_student_request_router_instructions, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Learning Hub MCP directly.