@claudinho/mcp 0.9.1 → 0.9.3
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 +9 -0
- package/dist/index.js +3 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -87,6 +87,15 @@ live scores from **ESPN's** public scoreboard (swappable provider, attributed in
|
|
|
87
87
|
output), market signals from Polymarket. Stdout carries only the MCP protocol;
|
|
88
88
|
diagnostics go to stderr.
|
|
89
89
|
|
|
90
|
+
## Privacy Policy
|
|
91
|
+
|
|
92
|
+
No personal data collected — no accounts, no telemetry, no analytics, no tracking, and no
|
|
93
|
+
Claudinho server. To show live scores, Claudinho makes read-only requests to public services
|
|
94
|
+
(ESPN; Polymarket for informational-only market signals) with no account or personal data
|
|
95
|
+
attached, though those services still receive standard request metadata (such as your IP
|
|
96
|
+
address) like any HTTP call. The MCP server keeps its cache **in memory only** and writes
|
|
97
|
+
nothing to disk. Full policy: [PRIVACY.md](https://github.com/arturogarrido/claudinho/blob/main/PRIVACY.md).
|
|
98
|
+
|
|
90
99
|
## License
|
|
91
100
|
|
|
92
101
|
MIT © 2026 Arturo Garrido · [source & issues](https://github.com/arturogarrido/claudinho)
|
package/dist/index.js
CHANGED
|
@@ -2825,6 +2825,7 @@ function nextFixtureForTeam(code, opts = {}) {
|
|
|
2825
2825
|
);
|
|
2826
2826
|
}
|
|
2827
2827
|
var LIVE_WINDOW_MS = 140 * 6e4;
|
|
2828
|
+
var KNOCKOUT_EXTRA_TIME_MS = 60 * 6e4;
|
|
2828
2829
|
function groups(fixtures = SCHEDULE) {
|
|
2829
2830
|
const set = /* @__PURE__ */ new Set();
|
|
2830
2831
|
for (const m of fixtures) if (m.group) set.add(m.group);
|
|
@@ -2908,7 +2909,7 @@ function rosterAtZero(matches) {
|
|
|
2908
2909
|
var ESPN_SOCCER = "https://site.api.espn.com/apis/site/v2/sports/soccer";
|
|
2909
2910
|
var DEFAULT_COMPETITION = "fifa.world";
|
|
2910
2911
|
var DEFAULT_BASE = `${ESPN_SOCCER}/${DEFAULT_COMPETITION}`;
|
|
2911
|
-
var USER_AGENT = `claudinho/${"0.9.
|
|
2912
|
+
var USER_AGENT = `claudinho/${"0.9.3"} (+https://github.com/arturogarrido/claudinho)`;
|
|
2912
2913
|
var MAX_RESPONSE_BYTES = 5 * 1024 * 1024;
|
|
2913
2914
|
function competitionBase(slug) {
|
|
2914
2915
|
return `${ESPN_SOCCER}/${slug}`;
|
|
@@ -5376,7 +5377,7 @@ async function toolGetShareSnippet(args) {
|
|
|
5376
5377
|
|
|
5377
5378
|
// src/server.ts
|
|
5378
5379
|
var SERVER_NAME = "claudinho";
|
|
5379
|
-
var SERVER_VERSION = "0.9.
|
|
5380
|
+
var SERVER_VERSION = "0.9.3";
|
|
5380
5381
|
var VOICE = asFlavorLevel(process.env.CLAUDINHO_FLAVOR) === "off" ? "" : `
|
|
5381
5382
|
Voice: when relaying scores, narrate with lively, regionally-appropriate football-commentary energy in the user's language. Each match line may end with a short exclamation ("\u2014 \xA1GOOOOL!") \u2014 use it as a tone cue. Keep every fact exact; never invent details and never impersonate or name a real commentator.`;
|
|
5382
5383
|
var INSTRUCTIONS = `Claudinho serves live scores, fixtures, and group standings for the 2026 men's football tournament.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudinho/mcp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"mcpName": "io.github.arturogarrido/claudinho",
|
|
5
5
|
"description": "World Cup MCP server for the 2026 men's football tournament — live scores, fixtures, standings, read-only prediction-market signals, and paste-ready match cards. Works with Claude Code, Cursor, Codex, Windsurf, Zed. Not affiliated with FIFA or Anthropic.",
|
|
6
6
|
"type": "module",
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
"zod": "^3.25.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@types/node": "^22.20.
|
|
58
|
-
"@vitest/coverage-v8": "^4.1.
|
|
57
|
+
"@types/node": "^22.20.1",
|
|
58
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
59
59
|
"tsup": "^8.0.0",
|
|
60
60
|
"typescript": "^5.7.0",
|
|
61
|
-
"vitest": "^4.1.
|
|
62
|
-
"@claudinho/core": "0.9.
|
|
61
|
+
"vitest": "^4.1.10",
|
|
62
|
+
"@claudinho/core": "0.9.3"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build": "tsup",
|