aula-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
aula-mcp by Casperjuel | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 22 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | educationProductivityCommunication | Knowledge GraphAI / 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.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
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
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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"]
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}