npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-moscow-school

v4.12.0

Published

Custom n8n nodes for Moscow School System (МЭШ) API integration

Readme

Moscow School System n8n Custom Nodes

This repository contains custom n8n nodes for integrating with the Moscow School System (МЭШ) API.

🆕 Version 4.0.0 - Webshare Proxy Support

This version includes comprehensive Webshare proxy integration for cloud deployment, enhanced logging, and improved JSON parsing. Perfect for deploying n8n workflows on cloud servers outside Russia.

🎯 Features

  • Student Information: Get student profile and basic info
  • Schedule Management: Retrieve daily/weekly schedules
  • Homework Tracking: Fetch homework assignments by date
  • Marks/Grades: Get student marks for date ranges
  • Webshare Proxy Support: Full proxy integration for cloud deployment
  • Enhanced Logging: Comprehensive debugging and monitoring
  • JSON Parsing: Automatic parsing of stringified JSON responses

🚀 Quick Start

1. Clone and Setup

git clone https://github.com/n8n-io/n8n-nodes-starter.git moscow-school-nodes
cd moscow-school-nodes
npm install

2. Build the Nodes

npm run build

3. Install in n8n

For Docker-based n8n:

# Copy built nodes to n8n custom directory
cp -r dist/* ~/.n8n/custom/

For globally installed n8n:

npm install -g

4. Restart n8n

Restart your n8n instance to load the new nodes.

📦 Available Nodes

1. Moscow School - Get Student Info

  • Purpose: Retrieve student profile information
  • Output: Student name, class, school, ID, etc.

2. Moscow School - Get Schedule

  • Purpose: Get daily or weekly schedule
  • Parameters: Date, student ID
  • Output: Classes, times, rooms, teachers

3. Moscow School - Get Homework

  • Purpose: Retrieve homework assignments
  • Parameters: Date range, student ID
  • Output: Homework list with descriptions and status

4. Moscow School - Get Marks

  • Purpose: Access student grades
  • Parameters: Date range, student ID
  • Output: Marks with subjects, values, weights

5. Moscow School - Get Notifications

  • Purpose: Get school notifications
  • Parameters: Student ID
  • Output: Recent notifications and updates

🔧 Configuration

Credentials Required

  1. Authentication Token: JWT token from Moscow School System
  2. Student ID: Your child's student ID (optional, can be auto-detected)

Getting Your Token

  1. Go to https://school.mos.ru
  2. Log in with your credentials
  3. Open browser Developer Tools (F12)
  4. Go to Network tab
  5. Look for API requests with Authorization headers
  6. Copy the JWT token

📝 Usage Examples

Basic Workflow: Daily Schedule Check

  1. Add "Moscow School - Get Schedule" node
  2. Configure with today's date
  3. Connect to notification node for alerts

Homework Monitoring

  1. Add "Moscow School - Get Homework" node
  2. Set date range (e.g., today to next week)
  3. Filter for pending assignments
  4. Send email/SMS notifications

Grade Tracking

  1. Add "Moscow School - Get Marks" node
  2. Set date range for recent period
  3. Process grades for analysis
  4. Generate reports

🛠️ Development

Project Structure

moscow-school-nodes/
├── nodes/                 # Node implementations
│   ├── MoscowSchool.node.ts
│   └── ...
├── credentials/           # Credential types
│   └── MoscowSchoolApi.credentials.ts
├── package.json
└── README.md

Adding New Nodes

  1. Create new node file in nodes/ directory
  2. Implement node logic following n8n patterns
  3. Add to package.json exports
  4. Build and test

📄 License

Private use only. Not for public distribution.

🤝 Support

For issues and questions, contact the repository maintainer.