用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill edubase-mcp-setup命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | edubase-mcp-setup |
| description | > Use when this capability is needed. |
The EduBase MCP server connects Claude (and other MCP-compatible clients) to an EduBase account. Once connected, the agent can create questions, manage quizzes and exams, look up users and results, and perform any action available through the EduBase API — all through natural conversation.
GitHub: https://github.com/EduBase/MCP
Developer docs: https://developer.edubase.net
Step-by-step guide: https://edubase.blog/claude-mcp-integration-guide/
The user needs an App ID and Secret Key from their EduBase account:
EDUBASE_API_APP)EDUBASE_API_KEY)EDUBASE_API_URL, shown on the page)No "EduBase API, MCP" option? Enter promo code
MCPGITHUBorMCPEduBaseBlogon the integrations page, or contact info@edubase.net to request access.
The API URL format is https://<subdomain>.edubase.net/api.
For the default public instance it is https://www.edubase.net/api.
Three installation methods. Pick whichever fits the user's environment.
Prerequisites: Node.js installed (https://nodejs.org)
{
"mcpServers": {
"edubase": {
"command": "node",
"args": [
"-y",
"@edubase/mcp"
],
"env": {
"EDUBASE_API_URL": "https://www.edubase.net/api",
"EDUBASE_API_APP": "<YOUR_APP_ID>",
"EDUBASE_API_KEY": "<YOUR_SECRET_KEY>"
}
}
}
}
Prerequisites: Docker installed and running (https://docker.com)
{
"mcpServers": {
"edubase": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "EDUBASE_API_URL",
"-e", "EDUBASE_API_APP",
"-e", "EDUBASE_API_KEY",
"edubase/mcp"
],
"env": {
"EDUBASE_API_URL": "https://www.edubase.net/api",
"EDUBASE_API_APP": "<YOUR_APP_ID>",
"EDUBASE_API_KEY": "<YOUR_SECRET_KEY>"
}
}
}
}
npx -y @smithery/cli install @EduBase/MCP --client claude
This handles everything automatically. Run it, then restart Claude Desktop.
If the EduBase instance exposes /mcp (e.g. https://domain.edubase.net/mcp):
{
"mcpServers": {
"edubase": {
"command": "npx",
"args": [
"mcp-remote",
"https://domain.edubase.net/mcp",
"--header",
"Authorization: Bearer <BASE64(APP_ID:SECRET_KEY)>"
]
}
}
}
Bearer token = base64 of APP_ID:SECRET_KEY (colon-separated).
Config file location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonIn Claude Desktop: Files → Settings → Developer → Edit Config
If the file already has other MCP servers, merge the "edubase" block into the existing
"mcpServers" object — do not replace the whole file.
After saving: restart Claude Desktop fully (quit and reopen).
Once Claude Desktop is running with the config, the agent can verify immediately:
Quick check — call the debug tools:
edubase_mcp_server_version → should return a version string (e.g. "1.1.2")
Account check — call:
edubase_get_user_me → returns the EduBase account details for the connected credentials
If edubase_get_user_me returns a name/account → the integration is live and working.
In Claude Desktop UI: After restart, the tool count should increase significantly (the EduBase MCP adds ~124 tools). Click the tools icon to verify EduBase tools are listed.
| Symptom | Likely cause | Fix |
|---|---|---|
| No EduBase tools visible | Config not saved / Claude not restarted | Save config, fully quit & reopen Claude Desktop |
edubase_get_user_me returns error | Wrong App ID or Secret Key | Re-check credentials on EduBase Integrations page |
| API URL error | Wrong URL format | Must be https://domain.edubase.net/api (with /api) |
| Docker: server not found | Docker not running | Start Docker Desktop first |
| "Option not available" | No MCP access on account | Use promo code MCPGITHUB on Integrations page |
| Variable | Required | Description |
|---|---|---|
EDUBASE_API_URL | Yes | Base API URL: https://domain.edubase.net/api |
EDUBASE_API_APP | Yes* | Integration App ID from EduBase |
EDUBASE_API_KEY | Yes* | Integration Secret Key from EduBase |
EDUBASE_SSE_MODE | No | Set true to use SSE HTTP transport |
EDUBASE_STREAMABLE_HTTP_MODE | No | Set true to use streamable HTTP transport |
EDUBASE_HTTP_PORT | No | HTTP port when using SSE/streamable mode (default: 3000) |
*Not required when using remote MCP server with Bearer token auth.
Once connected, the agent discovers all available tools automatically from the MCP server. No tool documentation is needed here — the agent reads tool descriptions at runtime and acts accordingly.
The EduBase hierarchy for reference:
The agent can create, read, and manage all of these, plus users, classes, organizations, tags, results, certificates, and more — all through the tools exposed by the connected MCP server.
Source: EduBase/skills — distributed by TomeVault.