@sportsbarwatch/mcp-server 0.1.2 → 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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
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.2",
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",