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 | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolseducationProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 8 mo ago | this 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
- Clone the repository:
git clone https://github.com/edyvision/student-services-demo-mcp.git
cd student-services-demo-mcp- Install dependencies:
uv sync
# or
make install- Run the server:
uv run main.py
# or
make start.mcpDocker Installation
docker compose up --buildClaude 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