@sportsbarwatch/mcp-server 0.1.1 → 0.1.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 CHANGED
@@ -44,15 +44,6 @@ Add to your config (`~/Library/Application Support/Claude/claude_desktop_config.
44
44
  claude mcp add sportsbarwatch -- npx -y @sportsbarwatch/mcp-server
45
45
  ```
46
46
 
47
- ### From source
48
-
49
- ```bash
50
- git clone https://github.com/eliastuff/vargarmatchen
51
- cd vargarmatchen/mcp-server
52
- npm install && npm run build
53
- node dist/index.js
54
- ```
55
-
56
47
  ## Environment Variables
57
48
 
58
49
  | Variable | Description | Default |
package/dist/index.js CHANGED
@@ -43,7 +43,7 @@ server.tool("find_bars_showing_match", "Find bars showing a specific match. Give
43
43
  return {
44
44
  content: [{
45
45
  type: "text",
46
- text: `Match: ${matchStr}\n\n${result.bars.length} bar(s):\n${barsStr}\n\nMore info: https://sportsbarwatch.com/match/${result.match.id}`,
46
+ text: `Match: ${matchStr}\n\n${result.bars.length} bar(s):\n${barsStr}\n\nMore info: https://sportsbarwatch.com/match/${result.match.id}?ref=mcp`,
47
47
  }],
48
48
  };
49
49
  });
@@ -62,7 +62,7 @@ server.tool("whats_on_tonight", "Get all matches being shown at bars tonight in
62
62
  return {
63
63
  content: [{
64
64
  type: "text",
65
- text: `${result.matches.length} match(es) tonight in ${city}:\n\n${lines}\n\nFull schedule: https://sportsbarwatch.com/tonight/${encodeURIComponent(city)}`,
65
+ text: `${result.matches.length} match(es) tonight in ${city}:\n\n${lines}\n\nFull schedule: https://sportsbarwatch.com/tonight/${encodeURIComponent(city)}?ref=mcp`,
66
66
  }],
67
67
  };
68
68
  });
@@ -90,7 +90,7 @@ server.tool("bar_details", "Get full details about a specific bar including addr
90
90
  return {
91
91
  content: [{
92
92
  type: "text",
93
- text: `${info}\n\nMore info: https://sportsbarwatch.com/barer/${b.id}`,
93
+ text: `${info}\n\nMore info: https://sportsbarwatch.com/barer/${b.id}?ref=mcp`,
94
94
  }],
95
95
  };
96
96
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sportsbarwatch/mcp-server",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for SportsBarWatch — find bars showing live sports worldwide",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",