0.0.2 • Published 4 months ago

@abrianto/smartschool-mcp v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

Smartschool MCP Server šŸ«

A dynamic Model Context Protocol (MCP) server that provides AI assistants with secure access to Smartschool APIs. This server automatically discovers all available Smartschool methods and exposes them as MCP tools with comprehensive safety guardrails.

✨ Features

  • šŸ”„ Dynamic Auto-Discovery: Automatically detects all Smartschool API methods
  • šŸ›”ļø Enterprise Safety: Multi-level protection against destructive operations
  • 🧠 AI-Optimized: Rich context and domain knowledge for better AI understanding
  • šŸš€ Future-Proof: Adapts automatically when Smartschool SDK updates
  • šŸ“š Domain Expert: Built-in knowledge of Belgian school systems and conventions
  • ⚔ Zero Maintenance: No manual tool definitions required

šŸš€ Quick Start

Prerequisites

  • Node.js 18+ or compatible JavaScript runtime
  • Access to a Smartschool instance
  • Valid Smartschool API credentials

Installation

# Clone the repository
git clone https://github.com/AbriantoLabs/smartschool-mcp.git
cd smartschool-mcp

# Install dependencies
npm install

# Build the project
npm run build

Configuration

Set up your environment variables:

# Required: Smartschool API Configuration
export SMARTSCHOOL_API_ENDPOINT="https://your-school.smartschool.be/Webservices/V3"
export SMARTSCHOOL_ACCESS_CODE="your-access-code"

# Optional: Safety Configuration
export ALLOW_DESTRUCTIVE=false          # Enable destructive operations
export REQUIRE_CONFIRMATION=true        # Require confirmation for risky operations

Running the Server manually

# Direct execution
node build/mod.js

# Or via npm script
npm start

šŸ”§ Usage with AI Assistants

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "smartschool": {
      "command": "npx",
      "args": ["-y", "@abrianto/smartschool-mcp"],
      "env": {
        "SMARTSCHOOL_API_ENDPOINT": "https://your-school.smartschool.be/Webservices/V3",
        "SMARTSCHOOL_ACCESS_CODE": "your-access-code",
        "ALLOW_DESTRUCTIVE": "false",
        "REQUIRE_CONFIRMATION": "true"
      }
    }
  }
}

or manually:

{
  "mcpServers": {
    "smartschool": {
      "command": "node",
      "args": ["/path/to/smartschool-mcp-server/build/mod.js"],
      "env": {
        "SMARTSCHOOL_API_ENDPOINT": "https://your-school.smartschool.be/Webservices/V3",
        "SMARTSCHOOL_ACCESS_CODE": "your-access-code",
        "ALLOW_DESTRUCTIVE": "false",
        "REQUIRE_CONFIRMATION": "true"
      }
    }
  }
}

Other MCP-Compatible AI Systems

The server communicates via stdio and follows the MCP specification. Configure your AI system to:

  1. Launch the server as a subprocess
  2. Connect via stdin/stdout
  3. Set the required environment variables

šŸ›”ļø Safety System

The server implements a comprehensive 4-level safety classification:

Safety Levels

LevelDescriptionExamplesBehavior
🟢 SAFERead-only operationsgetUserDetails, getAbsentsNo restrictions
🟔 MODERATEReversible changessendMsg, savePasswordAlways allowed
šŸ”„ DESTRUCTIVEHigh-impact changessaveUser, saveClassRequires ALLOW_DESTRUCTIVE=true
šŸ’€ CRITICALPermanent deletionsdelUser, delClassRequires ALLOW_DESTRUCTIVE=true

Confirmation System

Destructive and critical operations require explicit confirmation:

// This will be blocked without confirmation
{
  "username": "john.doe",
  "name": "John",
  "surname": "Doe",
  "basisrol": "leerling"
}

// This will execute (with confirmDestructiveAction)
{
  "username": "john.doe", 
  "name": "John",
  "surname": "Doe",
  "basisrol": "leerling",
  "confirmDestructiveAction": true  // ← Required!
}

Environment Controls

# Production (safe defaults)
export ALLOW_DESTRUCTIVE=false      # Blocks destructive operations
export REQUIRE_CONFIRMATION=true    # Requires explicit confirmation

# Development (more permissive)
export ALLOW_DESTRUCTIVE=true       # Allows all operations
export REQUIRE_CONFIRMATION=false   # No confirmation required (not recommended)

🧠 AI Context & Domain Knowledge

The server provides rich context to help AI understand Smartschool conventions:

Username Conventions

  • Pattern: firstname.lastname (e.g., "John Doe" → "john.doe")
  • Auto-conversion: Names automatically converted to usernames
  • Smart suggestions: Helpful tips when name-like input detected

Absence Codes

Comprehensive explanation of Belgian school absence codes:

CodeMeaningDescription
\|PresentStudent was in attendance
LLateStudent arrived late
ZSickAbsent due to illness
DDoctorMedical appointment
BKnownPre-notified absence
RUnforeseenEmergency/family reasons
-UnknownUnexplained absence

See full list in code for all 20+ codes

User Roles

  • leerling: Student
  • leerkracht: Teacher
  • directie: Management/Administration
  • andere: Other staff

Co-Account System

  • 0: Main account (student/teacher)
  • 1: First co-account (typically first parent)
  • 2: Second co-account (typically second parent)
  • 3-6: Additional co-accounts

šŸ“š Available Operations

The server automatically exposes all Smartschool API methods. Here are some key categories:

šŸ‘„ User Management

  • getUserDetails - Get comprehensive user information
  • saveUser - Create or update users (Destructive)
  • delUser - Delete users permanently (Critical)
  • setAccountStatus - Activate/deactivate accounts
  • savePassword - Set/change passwords

šŸ›ļø Classes & Groups

  • getClassTeachers - List class-teacher assignments
  • saveClass - Create/modify classes (Destructive)
  • saveUserToClass - Assign students to classes
  • delClass - Delete classes permanently (Critical)

šŸ“¬ Communication

  • sendMsg - Send messages to users/parents
  • saveSignature - Set email signatures

šŸ“Š Attendance & Reporting

  • getAbsents - Get student absence records
  • getAbsentsByDate - Daily attendance reports
  • getStudentCareer - Academic history

āš™ļø Administration

  • startSkoreSync - System synchronization (Critical)
  • addHelpdeskTicket - Create support tickets
  • getAllAccountsExtended - Bulk user data export

šŸ” Example Interactions

Safe Operations (No confirmation needed)

# Get student details by name (auto-converts to username)
{
  "tool": "smartschool-getUserDetails",
  "params": {
    "userIdentifier": "John Doe"  # Becomes "john.doe"
  }
}

# Check attendance for a date  
{
  "tool": "smartschool-getAbsentsByDate", 
  "params": {
    "date": "2024-12-15"
  }
}

Destructive Operations (Confirmation required)

# Create a new student (requires confirmation)
{
  "tool": "smartschool-saveUser",
  "params": {
    "username": "jane.smith",
    "name": "Jane", 
    "surname": "Smith",
    "basisrol": "leerling",
    "email": "jane.smith@student.school.be",
    "confirmDestructiveAction": true  # Required!
  }
}

Critical Operations (Extreme caution)

# Delete a user (requires ALLOW_DESTRUCTIVE=true + confirmation)
{
  "tool": "smartschool-delUser",
  "params": {
    "userIdentifier": "former.student", 
    "confirmDestructiveAction": true  # Required!
  }
}

🚨 Error Handling

The server provides comprehensive error handling:

Safety Blocks

🚫 Operation blocked: saveUser requires confirmation.

šŸ”„ HIGH RISK: This operation will create, modify, or remove important data. 
Changes may be difficult to reverse.

To proceed, add: confirmDestructiveAction: true

Configuration Errors

āš ļø Skipping delUser: 🚫 CRITICAL operations are disabled. 
Set ALLOW_DESTRUCTIVE=true to enable.

API Errors

Error in getUserDetails: Invalid username or user not found

šŸ”§ Development

Project Structure

smartschool-mcp-server/
ā”œā”€ā”€ src/
│   └── mod.ts              # Main server implementation
ā”œā”€ā”€ build/                  # Compiled JavaScript
ā”œā”€ā”€ package.json           # Dependencies and scripts
ā”œā”€ā”€ tsconfig.json          # TypeScript configuration
└── README.md              # This file

Building

# Development build
npm run build

# Watch mode (for development)
npm run dev

# Type checking
npm run type-check

Adding Custom Context

To enhance AI understanding for specific methods, edit the METHOD_CONTEXT object:

const METHOD_CONTEXT = {
  yourMethodName: {
    description: "Human-friendly description",
    useCase: "When to use this method", 
    category: "Logical grouping",
    examples: ["Example use case 1", "Example 2"],
    smartschoolContext: "Smartschool-specific details"
  }
};

Safety Classification

To modify safety levels, update the METHOD_SAFETY object:

const METHOD_SAFETY = {
  yourMethodName: SAFETY_LEVELS.DESTRUCTIVE,  // or SAFE, MODERATE, CRITICAL
};

šŸ“‹ Requirements

System Requirements

  • Node.js 18.0.0 or higher
  • 256MB+ available memory
  • Network access to Smartschool API endpoint

Smartschool Requirements

  • Active Smartschool instance
  • API access enabled
  • Valid access code with appropriate permissions

Permissions

The MCP server requires Smartschool API access with permissions for:

  • User management (for user operations)
  • Group/class management (for organizational operations)
  • Messaging (for communication features)
  • Reporting (for attendance/academic data)

Consult your Smartschool administrator for proper API access configuration.

šŸ”’ Security Considerations

Production Deployment

  1. Environment Variables: Never commit credentials to version control
  2. Access Control: Restrict ALLOW_DESTRUCTIVE in production
  3. Monitoring: Log all destructive operations
  4. Backup: Ensure database backups before bulk operations
  5. Testing: Thoroughly test in development environment first

API Security

  • API access codes should be rotated regularly
  • Monitor API usage for unusual patterns
  • Implement rate limiting if needed
  • Use HTTPS endpoints only

šŸ¤ Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development Guidelines

  • Follow TypeScript best practices
  • Add appropriate safety classifications for new methods
  • Update documentation for significant changes
  • Test with multiple Smartschool configurations

šŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

šŸ™‹ā€ā™‚ļø Support

Getting Help

  1. Documentation: Check this README and inline code comments
  2. Issues: Open a GitHub issue for bugs or feature requests
  3. Discussions: Use GitHub Discussions for questions
  4. Smartschool Support: Contact your Smartschool administrator for API access issues

Common Issues

Server won't start

  • Check environment variables are set correctly
  • Verify Node.js version compatibility
  • Ensure Smartschool API endpoint is accessible

Operations being blocked

  • Check ALLOW_DESTRUCTIVE setting
  • Verify confirmDestructiveAction parameter for destructive operations
  • Review safety level classifications

AI not understanding context

  • Check method descriptions in METHOD_CONTEXT
  • Verify domain knowledge sections are accurate
  • Consider adding method-specific examples

šŸ™ Acknowledgments

Abrianto & Smartschool-Kit

This MCP server is built on top of the excellent @abrianto/smartschool-kit library, created by Abrianto.

Abrianto is a technology company focused on creating developer-friendly tools and APIs for educational systems. Their work bridges the gap between complex school management platforms and modern development practices.

About Smartschool-Kit

The @abrianto/smartschool-kit library provides:

  • šŸš€ Runtime Agnostic: Works in Deno, Browser, and Node.js environments
  • šŸ’Ŗ Full TypeScript Support: Comprehensive type definitions for all endpoints
  • šŸ”§ CLI Interface: Command-line tools for quick operations
  • šŸŽÆ Complete API Coverage: Supports all Smartschool API endpoints
  • šŸ“˜ Excellent Documentation: Detailed examples and method descriptions
# Install the underlying library
npm install @abrianto/smartschool-kit

# Or from JSR
jsr add @abrianto/smartschool-client

Made with ā¤ļø for the education community by Abrianto

This MCP server bridges the gap between AI assistants and school management systems, enabling natural language interaction with complex educational data while maintaining the highest safety standards.