infinitecampus-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "infinitecampus-mcp",
3
+ "version": "0.1.0",
4
+ "description": "Infinite Campus Campus Parent MCP server (multi-district)",
5
+ "mcp_servers": {
6
+ "infinitecampus": {
7
+ "command": "node",
8
+ "args": ["${CLAUDE_PLUGIN_ROOT}/dist/bundle.js"]
9
+ }
10
+ }
11
+ }
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # infinitecampus-mcp
2
+
3
+ MCP server for Infinite Campus (Campus Parent portal). Multi-district support — a parent of kids in different districts can query and act across all of them from one MCP instance.
4
+
5
+ ## Tools
6
+
7
+ | Domain | Tools |
8
+ |---|---|
9
+ | Districts | `ic_list_districts` |
10
+ | Students | `ic_list_students` |
11
+ | Schedule | `ic_get_schedule` |
12
+ | Assignments | `ic_list_assignments` (with `missingOnly` filter) |
13
+ | Grades | `ic_list_grades` |
14
+ | Attendance | `ic_list_attendance` |
15
+ | Behavior | `ic_list_behavior` |
16
+ | Food service | `ic_list_food_service` |
17
+ | Documents | `ic_list_documents`, `ic_download_document` |
18
+ | Messages | `ic_list_messages`, `ic_get_message`, `ic_list_message_recipients`, `ic_send_message` |
19
+
20
+ Tools that the harness will gate as write/IO operations: `ic_send_message`, `ic_download_document`.
21
+
22
+ ## Configuration
23
+
24
+ Set numbered env vars per district. The loader scans `IC_1_*`, `IC_2_*`, … until it hits a gap, so accounts must be sequential.
25
+
26
+ ```
27
+ IC_1_NAME=anoka
28
+ IC_1_BASE_URL=https://anoka.infinitecampus.org
29
+ IC_1_DISTRICT=anoka
30
+ IC_1_USERNAME=parent@example.com
31
+ IC_1_PASSWORD=...
32
+ ```
33
+
34
+ Add `IC_2_*`, `IC_3_*` for additional districts. See `.env.example`.
35
+
36
+ ## Status
37
+
38
+ This project was developed and is maintained by AI (Claude). Use at your own discretion. Unofficial — not affiliated with Infinite Campus.