UNPKG

nlobby-mcp

Version:

MCP server for N Lobby school portal

60 lines 1.39 kB
{ "name": "nlobby-mcp", "version": "1.2.1", "description": "MCP server for N Lobby school portal", "main": "dist/index.js", "type": "module", "keywords": [ "mcp", "mcp-server", "nlobby", "school", "portal" ], "author": "minagishl", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/minagishl/nlobby-mcp.git" }, "homepage": "https://github.com/minagishl/nlobby-mcp#readme", "bugs": { "url": "https://github.com/minagishl/nlobby-mcp/issues" }, "dependencies": { "@modelcontextprotocol/sdk": "^0.6.0", "axios": "^1.6.0", "cheerio": "^1.0.0", "dotenv": "^16.3.1", "playwright": "^1.54.1", "puppeteer": "^24.12.1", "zod": "^3.22.4" }, "devDependencies": { "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0", "esbuild": "^0.25.6", "eslint": "^8.54.0", "jest": "^29.7.0", "prettier": "^3.6.2", "typescript": "^5.3.0" }, "bin": { "nlobby-mcp": "dist/index.js" }, "files": [ "dist/index.js", "dist/index.d.ts", "README.md", "LICENSE" ], "scripts": { "build": "node scripts/build.mjs", "dev": "tsc --watch", "start": "node dist/index.js", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts" } }