MCP Catalogs
Home

student-services-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

student-services-mcp
by EdyVision
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3177
Official
Categories
AI / LLM ToolseducationProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit8 mo agothis month

student-services-mcp · Summary

A FastAPI-based MCP server for student services management with academic planning, financial aid, and dropout risk prediction.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

student-services-mcp · Use cases

  • Educational institutions managing student records and academic planning
  • Administrators analyzing dropout risks and identifying at-risk students
  • Financial aid offices determining student eligibility

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

student-services-mcp · Install

Installation

Prerequisites

  • Python 3.13+
  • [uv](https://github.com/astral-sh/uv) - A fast Python package installer
  • [Docker](https://www.docker.com/) (optional)

Local Installation

  1. Clone the repository:
git clone https://github.com/edyvision/student-services-demo-mcp.git
cd student-services-demo-mcp
  1. Install dependencies:
uv sync
# or
make install
  1. Run the server:
uv run main.py
# or
make start.mcp

Docker Installation

docker compose up --build

Claude Desktop Configuration

Add to your Claude Desktop mcp.json file:

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

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

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

Docker

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

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.