openedu-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
openedu-mcp by Cicatriiz | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 8 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | educationAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
openedu-mcp · Summary
OpenEdu MCP Server provides educational resources and curriculum planning tools integrating OpenLibrary, Wikipedia, Dictionary, and arXiv APIs with grade-level filtering.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
openedu-mcp · Use cases
- Teachers creating lesson plans with age-appropriate resources from multiple educational sources
- Students finding research materials and explanations tailored to their grade level
- Educational developers creating applications that need curriculum-aligned content
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
openedu-mcp · Install
Installation
- **Clone the repository:**
git clone https://github.com/Cicatriiz/openedu-mcp.git
cd openedu-mcp- **Install dependencies:**
pip install -r requirements.txt- **Set up configuration:**
cp .env.example .env
# Edit .env with your preferred settings if needed- **Run the server:**
python -m src.mainClaude Desktop Integration
Add to claude_desktop_config.json:
{
"mcpServers": {
"openedu": {
"command": "python",
"args": ["-m", "src.main"],
"cwd": "${your_project_path}/openedu-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