MCP Catalogs
首页

student-services-mcp vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

student-services-mcp
by EdyVision
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30天用量
综合分3177
官方
分类
AI / LLM 工具education效率工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交8 个月前本月

student-services-mcp · 概述

基于FastAPI的MCP服务器,提供学生管理、学术规划和辍学风险预测功能。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

student-services-mcp · 使用场景

  • 教育机构管理学生记录和学术规划
  • 管理员分析辍学风险并识别处于危险中的学生
  • 助学金办公室确定学生资格

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

student-services-mcp · 安装

安装

前置要求

  • Python 3.13+
  • [uv](https://github.com/astral-sh/uv) - Python快速包安装器
  • [Docker](https://www.docker.com/) (可选)

本地安装

  1. 克隆仓库:
git clone https://github.com/edyvision/student-services-demo-mcp.git
cd student-services-demo-mcp
  1. 安装依赖:
uv sync
# 或
make install
  1. 运行服务器:
uv run main.py
# 或
make start.mcp

Docker安装

docker compose up --build

Claude Desktop配置

添加到您的Claude Desktop mcp.json文件:

{
  "mcpServers": {
    "student-services-mcp": {
      "url": "http://localhost:7860/mcp"
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。