footballbin-mcp-server 1.0.1 → 1.0.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/README.md +16 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -38,7 +38,7 @@ Add to your `claude_desktop_config.json`:
38
38
  "mcpServers": {
39
39
  "footballbin": {
40
40
  "command": "npx",
41
- "args": ["footballbin-mcp-server"]
41
+ "args": ["-y", "footballbin-mcp-server"]
42
42
  }
43
43
  }
44
44
  }
@@ -48,6 +48,21 @@ Add to your `claude_desktop_config.json`:
48
48
  - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
49
49
  - Windows: `%APPDATA%\Claude\claude_desktop_config.json`
50
50
 
51
+ **Troubleshooting:** If the server fails to connect, try installing globally first:
52
+ ```bash
53
+ npm install -g footballbin-mcp-server
54
+ ```
55
+ Then use this config:
56
+ ```json
57
+ {
58
+ "mcpServers": {
59
+ "footballbin": {
60
+ "command": "footballbin-mcp-server"
61
+ }
62
+ }
63
+ }
64
+ ```
65
+
51
66
  ### Claude.ai (Remote)
52
67
 
53
68
  1. Go to **Settings > Connectors**
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "footballbin-mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for FootballBin football match predictions - Premier League & Champions League",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "footballbin-mcp": "./dist/index.js"
8
+ "footballbin-mcp-server": "./dist/index.js"
9
9
  },
10
10
  "mcpName": "io.github.billychl1/footballbin-mcp-server",
11
11
  "scripts": {