Cyberedu MCP Server

CyberEDU is a cybersecurity training platform that provides hands-on labs, realistic simulations, and competitive environments. It’s designed for

Remote serverstreamable-httpPython

What is the Cyberedu MCP MCP server?

CyberEDU is a cybersecurity training platform that provides hands-on labs, realistic simulations, and competitive environments. It’s designed for enterprise security teams, academic institutions, government agencies, and individual. The cyberedu mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.

What it actually does

  • Dynamic Tool Discovery — Automatically discovers all public methods from CyberEduClient and exposes them as MCP tools
  • Zero Configuration for New Methods — When new methods are added to CyberEduClient, they automatically become available as MCP tools without any code changes
  • Type-Safe — Automatically generates JSON schemas from method signatures and type hints
  • Error Handling — Comprehensive error handling with detailed error messages

Its toolset

Everything the assistant can do here goes through one of these:

  • cyberedu_get_session_status — Check if authenticated, which tenant is selected, and if credentials are persisted
  • cyberedu_set_session_cookie — Set/update the session cookie for authentication (persists to disk)
  • cyberedu_switch_tenant — Switch to a different tenant/organization (persists to disk)
  • cyberedu_clear_session — Clear stored credentials from disk and memory
  • cyberedu_check_auth — Verify authentication and get user info
  • cyberedu_get_user_info — Get full user information
  • cyberedu_list_tenants — List all available tenants
  • cyberedu_get_current_tenant_info — Get current tenant information
  • cyberedu_get_user — Get user information by ID
  • cyberedu_list_challenges — List all challenges (with optional filters)
  • cyberedu_get_challenge — Get challenge details
  • cyberedu_get_challenge_difficulties — Get available difficulty levels

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Among the team communication options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Cyberedu MCP's toolset — cyberedu_get_session_status, cyberedu_set_session_cookie, cyberedu_switch_tenant and 11 more — is a fair guide to whether it matches your workflow. It is maintained by cyberedu-cyber-range; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Cyberedu MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • 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 Cyberedu MCP.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the cyberedu mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
cyberedu_get_session_statusCheck if authenticated, which tenant is selected, and if credentials are persisted
cyberedu_set_session_cookieSet/update the session cookie for authentication (persists to disk)
cyberedu_switch_tenantSwitch to a different tenant/organization (persists to disk)
cyberedu_clear_sessionClear stored credentials from disk and memory
cyberedu_check_authVerify authentication and get user info
cyberedu_get_user_infoGet full user information
cyberedu_list_tenantsList all available tenants
cyberedu_get_current_tenant_infoGet current tenant information
cyberedu_get_userGet user information by ID
cyberedu_list_challengesList all challenges (with optional filters)
cyberedu_get_challengeGet challenge details
cyberedu_get_challenge_difficultiesGet available difficulty levels
cyberedu_get_challenge_tagsGet available challenge tags
cyberedu_subscribe_to_challengeSubscribe to a challenge

How to install the Cyberedu MCP MCP server

{
  "mcpServers": {
    "cyberedu": {
      "command": "/path/to/cyberedu-mcp/venv/bin/python3",
      "args": ["-m", "cyberedu_mcp"]
    }
  }
}

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

Example prompts to try

  • Use Cyberedu MCP to cyberedu get session status.
  • Use Cyberedu MCP to cyberedu set session cookie.
  • Use Cyberedu MCP to cyberedu switch tenant.

Frequently asked questions

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