infinitecampus-mcp 2.0.2 → 2.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.
package/README.md CHANGED
@@ -31,11 +31,11 @@ Tools that the harness will gate as write/IO operations: `ic_download_document`.
31
31
  Set a single set of env vars for your primary Infinite Campus account:
32
32
 
33
33
  ```
34
- IC_BASE_URL=https://600.ncsis.gov
35
- IC_DISTRICT=psu600cms
34
+ IC_BASE_URL=https://campus.springfield.k12.example.us
35
+ IC_DISTRICT=springfield
36
36
  IC_USERNAME=parent@example.com
37
37
  IC_PASSWORD=...
38
- IC_NAME=Myers Park # optional, defaults to IC_DISTRICT
38
+ IC_NAME=Springfield # optional, defaults to IC_DISTRICT
39
39
  ```
40
40
 
41
41
  Linked districts (via CUPS SSO) are auto-discovered after primary login — a parent with kids in two districts only configures the primary. No extra config needed. If you have truly separate IC instances with different credentials, run two MCP instances.
package/dist/bundle.js CHANGED
@@ -31318,7 +31318,7 @@ try {
31318
31318
  }
31319
31319
  var account = loadAccount();
31320
31320
  var client = new ICClient(account);
31321
- var server = new McpServer({ name: "infinitecampus", version: "2.0.2" });
31321
+ var server = new McpServer({ name: "infinitecampus", version: "2.1.0" });
31322
31322
  registerDistrictTools(server, client);
31323
31323
  registerStudentTools(server, client);
31324
31324
  registerScheduleTools(server, client);
package/dist/client.js CHANGED
@@ -271,7 +271,7 @@ export class ICClient {
271
271
  * Parse Set-Cookie headers into a deduplicated cookie string + XSRF token.
272
272
  *
273
273
  * IC's login response sets ~20 cookies including deletion markers (Max-Age=0).
274
- * Sending both `appName=` (delete) and `appName=psu600cms` (set) causes IC to
274
+ * Sending both `appName=` (delete) and `appName=springfield` (set) causes IC to
275
275
  * reject requests with "conflicting app name values". This parser:
276
276
  * - Filters out cookies with Max-Age=0 (deletion markers)
277
277
  * - Deduplicates by name (last value wins)
package/dist/index.js CHANGED
@@ -34,7 +34,7 @@ import { registerFeeTools } from './tools/fees.js';
34
34
  import { registerFeaturesTools } from './tools/features.js';
35
35
  const account = loadAccount();
36
36
  const client = new ICClient(account);
37
- const server = new McpServer({ name: 'infinitecampus', version: '2.0.2' });
37
+ const server = new McpServer({ name: 'infinitecampus', version: '2.1.0' });
38
38
  registerDistrictTools(server, client);
39
39
  registerStudentTools(server, client);
40
40
  registerScheduleTools(server, client);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinitecampus-mcp",
3
- "version": "2.0.2",
3
+ "version": "2.1.0",
4
4
  "description": "Infinite Campus (Campus Parent) MCP server — multi-district read + message/document write",
5
5
  "author": "Claude Code (AI) <https://www.anthropic.com/claude>",
6
6
  "repository": {