@claudinho/mcp 0.1.0 → 0.2.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 +38 -6
- package/dist/index.js +451 -140
- package/package.json +18 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudinho/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Claudinho MCP server — ask your agent about the 2026 football tournament. Live scores, fixtures, standings. Not affiliated with FIFA or Anthropic.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,11 @@
|
|
|
23
23
|
"bin": {
|
|
24
24
|
"claudinho-mcp": "./dist/index.js"
|
|
25
25
|
},
|
|
26
|
-
"files": [
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE"
|
|
30
|
+
],
|
|
27
31
|
"keywords": [
|
|
28
32
|
"mcp",
|
|
29
33
|
"model-context-protocol",
|
|
@@ -31,24 +35,25 @@
|
|
|
31
35
|
"soccer",
|
|
32
36
|
"world-cup",
|
|
33
37
|
"2026",
|
|
34
|
-
"live-scores"
|
|
38
|
+
"live-scores",
|
|
39
|
+
"vibinglavidaloca"
|
|
35
40
|
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "tsup",
|
|
38
|
-
"dev": "tsup --watch",
|
|
39
|
-
"test": "vitest run",
|
|
40
|
-
"typecheck": "tsc --noEmit",
|
|
41
|
-
"start": "node dist/index.js"
|
|
42
|
-
},
|
|
43
41
|
"dependencies": {
|
|
44
42
|
"@modelcontextprotocol/sdk": "^1.21.0",
|
|
45
43
|
"zod": "^3.25.0"
|
|
46
44
|
},
|
|
47
45
|
"devDependencies": {
|
|
48
|
-
"@claudinho/core": "workspace:*",
|
|
49
46
|
"@types/node": "^22.0.0",
|
|
50
47
|
"tsup": "^8.0.0",
|
|
51
48
|
"typescript": "^5.7.0",
|
|
52
|
-
"vitest": "^
|
|
49
|
+
"vitest": "^4.1.0",
|
|
50
|
+
"@claudinho/core": "0.2.0"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"build": "tsup",
|
|
54
|
+
"dev": "tsup --watch",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"start": "node dist/index.js"
|
|
53
58
|
}
|
|
54
|
-
}
|
|
59
|
+
}
|