aula-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
aula-mcp by Casperjuel | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 76 |
| Official | — | ✓ |
| Categories | educationProductivityCommunication | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
aula-mcp · Summary
MCP server for Denmark's Aula school platform with MitID authentication, enabling AI agents to access student profiles, calendar, messages and schedules.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
aula-mcp · Use cases
- Parents checking children's school schedules and upcoming assignments
- Automating retrieval of important school announcements and messages
- Integrating school data with home automation systems via Home Assistant
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
aula-mcp · Install
Installation
- Requires Bun ≥ 1.3 and pnpm ≥ 10
git clone git@github.com/Casperjuel/aula-mcp.git
cd aula-mcp
pnpm install
# First-time MitID login (QR code in MitID app)
pnpm login
# Health check of all Aula endpoints
pnpm doctor
# Start MCP server (http://127.0.0.1:7878/mcp)
pnpm mcpClaude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"aula": {
"command": "node",
"args": ["/path/to/aula-mcp/packages/mcp-server/dist/server.js"]
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}