AgentHubAgentHub

MCP

MCP ServerMCP Registry官方收录

io.github.EduBase/MCP · v1.2.5

EduBase MCP server

概览

MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 streamable-http、stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "MCP": {
      "command": "npx",
      "args": [
        "-y",
        "@edubase/mcp"
      ],
      "env": {
        "EDUBASE_API_APP": "<EDUBASE_API_APP>",
        "EDUBASE_API_SECRET": "<EDUBASE_API_SECRET>"
      }
    }
  }
}

环境变量

EDUBASE_API_URL可选

The base URL of the EduBase API (default: https://www.edubase.net/api)

EDUBASE_API_APP必填

The integration app ID for EduBase

EDUBASE_API_SECRET必填secret

The secret key for the EduBase API

相关资源

统一 Manifest

{
  "id": "io.github.EduBase/MCP",
  "type": "mcp-server",
  "version": "1.2.5",
  "displayName": "MCP",
  "description": "EduBase MCP server",
  "repository": {
    "url": "https://github.com/EduBase/MCP",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@edubase/mcp",
        "version": "1.2.5",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "EDUBASE_API_URL",
            "description": "The base URL of the EduBase API (default: https://www.edubase.net/api)"
          },
          {
            "name": "EDUBASE_API_APP",
            "description": "The integration app ID for EduBase",
            "isRequired": true
          },
          {
            "name": "EDUBASE_API_SECRET",
            "description": "The secret key for the EduBase API",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://www.edubase.net/mcp"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.EduBase/MCP",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.EduBase%2FMCP/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
MCP — MCP Server 安装与配置 · AgentHub