@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.
@@ -20,5 +20,5 @@
20
20
  "position": "D"
21
21
  }
22
22
  ],
23
- "updated_at": "2026-09-01T20:15:07.802Z"
23
+ "updated_at": "2026-09-01T20:20:55.207Z"
24
24
  }
@@ -30,5 +30,5 @@
30
30
  "slot": "LW"
31
31
  }
32
32
  ],
33
- "updated_at": "2026-09-01T20:15:07.663Z"
33
+ "updated_at": "2026-09-01T20:20:55.063Z"
34
34
  }
@@ -13,5 +13,5 @@
13
13
  "points": 138
14
14
  }
15
15
  ],
16
- "updated_at": "2026-09-01T20:15:07.954Z"
16
+ "updated_at": "2026-09-01T20:20:55.360Z"
17
17
  }
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** — OAuth 2.0, minimum permissions, no third-party data egress
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 / Streaming / GamesInHand / WeekendStream / Lineup
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
- Your credentials stay in the project's git-ignored `.env`; the server resolves
189
- it from its own install directory, so it is found regardless of the working
190
- directory the client launches it with. You do **not** need to copy secrets into
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 hottest waiver adds in my league?"*
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, yahoo-stats
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.0",
4
- "description": "Universal fantasy hockey intelligence \u2014 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.",
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
  }