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 +12 -10
- package/dist/bundle.js +269 -178
- package/dist/client.js +189 -25
- package/dist/config.js +27 -44
- package/dist/index.js +8 -6
- package/dist/tools/assignments.js +1 -1
- package/dist/tools/attendance.js +11 -2
- package/dist/tools/behavior.js +1 -1
- package/dist/tools/districts.js +1 -0
- package/dist/tools/documents.js +26 -8
- package/dist/tools/foodservice.js +1 -1
- package/dist/tools/grades.js +1 -1
- package/dist/tools/messages.js +11 -58
- package/dist/tools/schedule.js +2 -5
- package/dist/tools/students.js +1 -1
- package/package.json +7 -2
- package/skills/ic/SKILL.md +24 -32
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# infinitecampus-mcp
|
|
2
2
|
|
|
3
|
-
MCP server for Infinite Campus (Campus Parent portal).
|
|
3
|
+
MCP server for Infinite Campus (Campus Parent portal). Single-account config — linked 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
|
-
|
|
|
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: `
|
|
20
|
+
Tools that the harness will gate as write/IO operations: `ic_download_document`.
|
|
21
21
|
|
|
22
22
|
## Configuration
|
|
23
23
|
|
|
24
|
-
Set
|
|
24
|
+
Set a single set of env vars for your primary Infinite Campus account:
|
|
25
25
|
|
|
26
26
|
```
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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
|
-
|
|
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
|
|