ultimate_mcp_server vs student-services-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | student-services-mcp by EdyVision | |
|---|---|---|
| Stars | ★ 149 | ★ 1 |
| 30d uses | — | — |
| Score | 85 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolseducationProductivity |
| Language | Python | Python |
| Last commit | 2 mo ago | 8 mo ago |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
student-services-mcp · Summary
A FastAPI-based MCP server for student services management with academic planning, financial aid, and dropout risk prediction.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_serverstudent-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"
}
}
}