← hivelearn.app
INDIVIDUAL MCP TOOL
hivelearn_list_quizzes
List quizzes, optionally scoped to a course or a specific lesson.
LIVE ENDPOINT
https://mcp.hivelearn.app
Connect to this endpoint to inspect the live schema for hivelearn_list_quizzes and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.hivelearn]
url = "https://mcp.hivelearn.app"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"hivelearn": {
"type": "http",
"url": "https://mcp.hivelearn.app"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: hivelearn
Remote MCP URL: https://mcp.hivelearn.app
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"hivelearn": {
"url": "https://mcp.hivelearn.app"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"hivelearn": {
"type": "http",
"url": "https://mcp.hivelearn.app"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "hivelearn",
"transport": "streamable-http",
"url": "https://mcp.hivelearn.app"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
hivelearn_get_community_me— Returns the community the current API key is scoped to.hivelearn_list_members— List members of the authenticated community.hivelearn_get_member— Fetch a single member by profile uuid.hivelearn_update_member— Change a member's role or ban status.hivelearn_list_posts— List community feed posts, newest first.hivelearn_get_post— Fetch one post with full content.hivelearn_create_post— Publish a new post to the community feed.hivelearn_update_post— Edit an existing post.