msstate-policies-mcp 0.2.0 → 0.4.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 +8 -4
- package/dist/index.js +5420 -4575
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# msstate-policies-mcp
|
|
2
2
|
|
|
3
|
-
MCP server exposing Mississippi State University's current Operating Policies (<https://www.policies.msstate.edu/current>). **Unofficial — not affiliated with MSU. Always verify against the official source.**
|
|
3
|
+
MCP server exposing Mississippi State University's current Operating Policies (<https://www.policies.msstate.edu/current>) **and** six MSU academic-date sources (registrar academic + exam calendars, university holidays, graduate school PDFs, financial aid, housing). **Unofficial — not affiliated with MSU. Always verify against the official source.**
|
|
4
4
|
|
|
5
5
|
This is the publishable npm package and the Claude Code plugin source. See the [repository root README](../README.md) for the user-facing walkthrough, install paths, and what to expect from a response.
|
|
6
6
|
|
|
@@ -16,9 +16,13 @@ npx -y msstate-policies-mcp
|
|
|
16
16
|
node /path/to/msstate-mcp/msstate-policies/dist/index.js
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
## Tools
|
|
19
|
+
## Tools (7)
|
|
20
20
|
|
|
21
|
-
`search_policies`, `get_policy`, `chain_find_relevant_policies`, `cite_policy
|
|
21
|
+
**Policies:** `search_policies`, `get_policy`, `chain_find_relevant_policies`, `cite_policy`
|
|
22
|
+
**Calendars (v0.4.0+):** `find_msu_date`, `get_msu_calendar`
|
|
23
|
+
**Diagnostics:** `health_check`
|
|
24
|
+
|
|
25
|
+
See the [root README](../README.md#what-this-does) for tool descriptions and example responses.
|
|
22
26
|
|
|
23
27
|
## Environment variables
|
|
24
28
|
|
|
@@ -26,7 +30,7 @@ node /path/to/msstate-mcp/msstate-policies/dist/index.js
|
|
|
26
30
|
|---|---|
|
|
27
31
|
| `MSSTATE_POLICIES_RETRIEVAL` | `bm25` (default) / `embed` / `hybrid`. See root README for the comparative-eval rationale. |
|
|
28
32
|
| `OPENAI_API_KEY` | Required at runtime when `MSSTATE_POLICIES_RETRIEVAL` is `embed` or `hybrid` (for query embedding). Otherwise unused. |
|
|
29
|
-
| `MSSTATE_POLICIES_CACHE` | Set to `disk` to enable cross-platform on-disk policy
|
|
33
|
+
| `MSSTATE_POLICIES_CACHE` | Set to `disk` to enable cross-platform on-disk cache for policy PDFs (24h TTL) via env-paths. Default in-memory only. Calendar rows use in-memory TTL only (24h stable sources, 6h housing). |
|
|
30
34
|
|
|
31
35
|
All logging goes to **stderr** only — stdout is reserved for MCP JSON-RPC framing.
|
|
32
36
|
|