@semanticintent/semantic-chirp-intelligence-mcp 3.0.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/build/types.js ADDED
@@ -0,0 +1,2 @@
1
+ // TypeScript interfaces for Yahoo Fantasy API responses
2
+ export {};
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@semanticintent/semantic-chirp-intelligence-mcp",
3
+ "version": "3.0.0",
4
+ "description": "Semantic Intent pattern implementation for fantasy hockey intelligence - AI analysis that chirps you into championships",
5
+ "type": "module",
6
+ "main": "build/index.js",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "watch": "tsc --watch",
10
+ "dev": "node --watch build/index.js",
11
+ "start": "node build/index.js",
12
+ "type-check": "tsc --noEmit",
13
+ "test": "vitest run",
14
+ "test:watch": "vitest",
15
+ "test:ui": "vitest --ui",
16
+ "test:coverage": "vitest run --coverage"
17
+ },
18
+ "keywords": [
19
+ "mcp",
20
+ "semantic-intent",
21
+ "fantasy-hockey",
22
+ "chirp",
23
+ "intelligence",
24
+ "yahoo-fantasy",
25
+ "ice"
26
+ ],
27
+ "author": "semanticintent",
28
+ "license": "MIT",
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/semanticintent/semantic-chirp-intelligence-mcp.git"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "^24.7.0",
38
+ "@types/xml2js": "^0.4.14",
39
+ "@vitest/coverage-v8": "^3.2.4",
40
+ "@vitest/ui": "^3.2.4",
41
+ "typescript": "^5.9.3",
42
+ "vitest": "^3.2.4"
43
+ },
44
+ "dependencies": {
45
+ "@modelcontextprotocol/sdk": "^1.19.1",
46
+ "dotenv": "^17.2.3",
47
+ "selfsigned": "^3.0.1",
48
+ "xml2js": "^0.6.2"
49
+ }
50
+ }