@claudinho/mcp 0.1.0 → 0.1.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/README.md CHANGED
@@ -53,14 +53,14 @@ includes both human-readable text and structured JSON.
53
53
  ## Other competitions
54
54
 
55
55
  By default the server follows the 2026 World Cup. Set the `CLAUDINHO_COMPETITION`
56
- env var (e.g. `fifa.friendly`) to point the live tools at another ESPN
56
+ env var (e.g. `fifa.friendly`) to point the live tools at another
57
57
  competition — useful for testing before the tournament. In Claude Code, add it
58
58
  to the `env` block of your MCP server entry.
59
59
 
60
60
  ## How it works
61
61
 
62
62
  The fixture list ships bundled in the package; only live state hits the network
63
- (ESPN by default, via a swappable adapter). The server writes nothing to stdout
63
+ (via a swappable data provider). The server writes nothing to stdout
64
64
  except the MCP protocol; diagnostics go to stderr.
65
65
 
66
66
  ## License
package/dist/index.js CHANGED
@@ -2612,7 +2612,7 @@ function standingsTable(group, rows) {
2612
2612
  function pad(n) {
2613
2613
  return `${n}`.padStart(2);
2614
2614
  }
2615
- var DISCLAIMER = "Claudinho is an independent fan project \u2014 not affiliated with or endorsed by FIFA or Anthropic. Data: ESPN.";
2615
+ var DISCLAIMER = "Claudinho is an independent fan project \u2014 not affiliated with or endorsed by FIFA or Anthropic.";
2616
2616
 
2617
2617
  // src/tools.ts
2618
2618
  function resolveAdapter(args) {
@@ -2719,7 +2719,7 @@ ${matchLine(fixture, opts)}`),
2719
2719
 
2720
2720
  // src/server.ts
2721
2721
  var SERVER_NAME = "claudinho";
2722
- var SERVER_VERSION = "0.1.0";
2722
+ var SERVER_VERSION = "0.1.1";
2723
2723
  var INSTRUCTIONS = `Claudinho serves live scores, fixtures, and group standings for the 2026 men's football tournament.
2724
2724
  Use get_live during matches, get_today for a day's schedule, get_next_fixture for a specific team (3-letter code, e.g. MEX), and get_standings for group tables.
2725
2725
  ${DISCLAIMER}`;
@@ -2749,7 +2749,7 @@ function buildServer() {
2749
2749
  date: z.string().optional().describe("Date as YYYY-MM-DD (default: today)"),
2750
2750
  ...commonArgs
2751
2751
  },
2752
- // Read-only; reaches an external data source (ESPN) for live overlay.
2752
+ // Read-only; reaches an external data provider for the live overlay.
2753
2753
  annotations: { readOnlyHint: true, openWorldHint: true }
2754
2754
  },
2755
2755
  async (args) => toContent(await toolGetToday(args))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudinho/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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": ["dist", "README.md", "LICENSE"],
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "LICENSE"
30
+ ],
27
31
  "keywords": [
28
32
  "mcp",
29
33
  "model-context-protocol",