@semanticintent/semantic-chirp-intelligence-mcp 4.0.0 → 4.0.1
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/.chirp-data/opponent.json +1 -1
- package/.chirp-data/roster.json +1 -1
- package/.chirp-data/standings.json +1 -1
- package/README.md +9 -13
- package/package.json +3 -4
package/.chirp-data/roster.json
CHANGED
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ occasional chirp.
|
|
|
37
37
|
- 🗓️ **Schedule intelligence** — every game count comes from the NHL's public club-schedule API, per club, per week
|
|
38
38
|
- 🏛️ **Semantic Anchoring Governance** — every tool declares its intent; a dashboard surfaces the health metrics
|
|
39
39
|
- 🧩 **Template Pattern architecture** — analyses are composable, consistent, and testable
|
|
40
|
-
- 🔒 **Read-only & local** —
|
|
40
|
+
- 🔒 **Read-only & local** — no credentials of any kind, no third-party data egress; your roster never leaves your machine
|
|
41
41
|
|
|
42
42
|
---
|
|
43
43
|
|
|
@@ -53,7 +53,8 @@ occasional chirp.
|
|
|
53
53
|
├─────────────────────────────────────────────────────────────┤
|
|
54
54
|
│ Intelligence layer (src/analyses/ + src/template/) │
|
|
55
55
|
│ • AnalysisTemplate — shared Template Pattern base │
|
|
56
|
-
│ • Ice /
|
|
56
|
+
│ • Ice / Lineup / GamesInHand / Streaming / WeekendStream │
|
|
57
|
+
│ • Breakout / ScheduleValue / DraftPick │
|
|
57
58
|
├─────────────────────────────────────────────────────────────┤
|
|
58
59
|
│ Services (src/services/) │
|
|
59
60
|
│ • ChirpIntelligence — turns data into chirp │
|
|
@@ -174,10 +175,7 @@ Edit your Claude Desktop config:
|
|
|
174
175
|
"mcpServers": {
|
|
175
176
|
"semantic-chirp-intelligence-mcp": {
|
|
176
177
|
"command": "node",
|
|
177
|
-
"args": ["/absolute/path/to/semantic-chirp-intelligence-mcp/build/index.js"]
|
|
178
|
-
"env": {
|
|
179
|
-
"DOTENV_CONFIG_QUIET": "true"
|
|
180
|
-
}
|
|
178
|
+
"args": ["/absolute/path/to/semantic-chirp-intelligence-mcp/build/index.js"]
|
|
181
179
|
}
|
|
182
180
|
}
|
|
183
181
|
}
|
|
@@ -185,11 +183,9 @@ Edit your Claude Desktop config:
|
|
|
185
183
|
|
|
186
184
|
Use an **absolute path** to `build/index.js` (forward slashes, even on Windows). Restart Claude Desktop — the CHIRP tools will appear.
|
|
187
185
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
the client config. If you prefer to set them there anyway, a client `env` block
|
|
192
|
-
still overrides the file.
|
|
186
|
+
There is no `env` block, because there is nothing to configure. Your pasted
|
|
187
|
+
roster is stored in the project's git-ignored `.chirp-data/` and never leaves
|
|
188
|
+
your machine.
|
|
193
189
|
|
|
194
190
|
---
|
|
195
191
|
|
|
@@ -203,7 +199,7 @@ Once connected, just talk to Claude about your team:
|
|
|
203
199
|
- *"Where do I have a games-in-hand edge over my opponent?"*
|
|
204
200
|
- *"Find me streaming goalies for the weekend — real value, not desperation pickups."*
|
|
205
201
|
- *"Am I winning my matchup? Which categories am I losing?"*
|
|
206
|
-
- *"Who are the
|
|
202
|
+
- *"Who are the best players not on my roster right now?"*
|
|
207
203
|
- *"Show me the governance dashboard."*
|
|
208
204
|
|
|
209
205
|
---
|
|
@@ -232,7 +228,7 @@ semantic-chirp-intelligence-mcp/
|
|
|
232
228
|
│ ├── services/ # NhlScheduleService, NhlStatsService, RosterStore,
|
|
233
229
|
│ │ # LeagueDataService, ChirpIntelligence
|
|
234
230
|
│ ├── config/ # tool-metadata, personality-modes, chirp-styles
|
|
235
|
-
│ ├── domain/ # types, governance, nhl-teams
|
|
231
|
+
│ ├── domain/ # types, governance, nhl-teams
|
|
236
232
|
├── tests/ # vitest tests
|
|
237
233
|
├── scripts/preflight.mjs # build + NHL API check
|
|
238
234
|
├── scripts/smoke.mjs # calls every tool, flags crash-like responses
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semanticintent/semantic-chirp-intelligence-mcp",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "Universal fantasy hockey intelligence
|
|
3
|
+
"version": "4.0.1",
|
|
4
|
+
"description": "Universal fantasy hockey intelligence — a Model Context Protocol server that reads NHL schedule and player data and analyses any roster you paste. No account, no API key, no platform lock-in.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"vitest": "^4.1.10"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@modelcontextprotocol/sdk": "^1.19.1"
|
|
47
|
-
"dotenv": "^17.4.2"
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.19.1"
|
|
48
47
|
}
|
|
49
48
|
}
|