infinitecampus-mcp 0.1.0 → 0.1.2

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # infinitecampus-mcp
2
2
 
3
- MCP server for Infinite Campus (Campus Parent portal). Multi-district supporta parent of kids in different districts can query and act across all of them from one MCP instance.
3
+ MCP server for Infinite Campus (Campus Parent portal). Single-account configlinked districts are auto-discovered via CUPS SSO after login.
4
4
 
5
5
  ## Tools
6
6
 
@@ -15,23 +15,25 @@ MCP server for Infinite Campus (Campus Parent portal). Multi-district support
15
15
  | Behavior | `ic_list_behavior` |
16
16
  | Food service | `ic_list_food_service` |
17
17
  | Documents | `ic_list_documents`, `ic_download_document` |
18
- | Messages | `ic_list_messages`, `ic_get_message`, `ic_list_message_recipients`, `ic_send_message` |
18
+ | Notifications | `ic_list_messages` (prism notifications), `ic_get_message` (unread count) |
19
19
 
20
- Tools that the harness will gate as write/IO operations: `ic_send_message`, `ic_download_document`.
20
+ Tools that the harness will gate as write/IO operations: `ic_download_document`.
21
21
 
22
22
  ## Configuration
23
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.
24
+ Set a single set of env vars for your primary Infinite Campus account:
25
25
 
26
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=...
27
+ IC_BASE_URL=https://600.ncsis.gov
28
+ IC_DISTRICT=psu600cms
29
+ IC_USERNAME=parent@example.com
30
+ IC_PASSWORD=...
31
+ IC_NAME=Myers Park # optional, defaults to IC_DISTRICT
32
32
  ```
33
33
 
34
- Add `IC_2_*`, `IC_3_*` for additional districts. See `.env.example`.
34
+ Linked districts (via CUPS SSO) are auto-discovered after login — no extra config needed. If you have truly separate IC instances with different credentials, run two MCP instances.
35
+
36
+ See `.env.example`.
35
37
 
36
38
  ## Status
37
39