unofficial-ravensburger-playhub-mcp 1.0.2 → 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.
- package/README.md +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,12 +31,14 @@ The server runs over stdio. Add it as an MCP server in your client (e.g. Cursor)
|
|
|
31
31
|
|
|
32
32
|
## Using with Cursor
|
|
33
33
|
|
|
34
|
+
Cursor limits the **combined server name + tool name** to 60 characters. Use a **short key** (e.g. `lorcana-event-finder`) in `mcpServers` so tools like `get_tournament_round_standings` don’t get filtered out.
|
|
35
|
+
|
|
34
36
|
**Option A — npx (easiest):** No clone or build. In **Settings → MCP**, add:
|
|
35
37
|
|
|
36
38
|
```json
|
|
37
39
|
{
|
|
38
40
|
"mcpServers": {
|
|
39
|
-
"
|
|
41
|
+
"lorcana-event-finder": {
|
|
40
42
|
"command": "npx",
|
|
41
43
|
"args": ["-y", "unofficial-ravensburger-playhub-mcp"]
|
|
42
44
|
}
|
|
@@ -49,7 +51,7 @@ The server runs over stdio. Add it as an MCP server in your client (e.g. Cursor)
|
|
|
49
51
|
```json
|
|
50
52
|
{
|
|
51
53
|
"mcpServers": {
|
|
52
|
-
"
|
|
54
|
+
"lorcana-event-finder": {
|
|
53
55
|
"command": "node",
|
|
54
56
|
"args": ["/path/to/unofficial-ravensburger-playhub-mcp/dist/index.js"]
|
|
55
57
|
}
|
|
@@ -72,7 +74,7 @@ Add the server to **Claude Desktop** by editing your MCP config file:
|
|
|
72
74
|
```json
|
|
73
75
|
{
|
|
74
76
|
"mcpServers": {
|
|
75
|
-
"
|
|
77
|
+
"lorcana-event-finder": {
|
|
76
78
|
"command": "npx",
|
|
77
79
|
"args": ["-y", "unofficial-ravensburger-playhub-mcp"]
|
|
78
80
|
}
|
|
@@ -85,7 +87,7 @@ Add the server to **Claude Desktop** by editing your MCP config file:
|
|
|
85
87
|
```json
|
|
86
88
|
{
|
|
87
89
|
"mcpServers": {
|
|
88
|
-
"
|
|
90
|
+
"lorcana-event-finder": {
|
|
89
91
|
"command": "node",
|
|
90
92
|
"args": ["/path/to/unofficial-ravensburger-playhub-mcp/dist/index.js"]
|
|
91
93
|
}
|
|
@@ -127,7 +129,7 @@ Example for `.mcp.json` or `~/.claude.json`:
|
|
|
127
129
|
```json
|
|
128
130
|
{
|
|
129
131
|
"mcpServers": {
|
|
130
|
-
"
|
|
132
|
+
"lorcana-event-finder": {
|
|
131
133
|
"command": "npx",
|
|
132
134
|
"args": ["-y", "unofficial-ravensburger-playhub-mcp"]
|
|
133
135
|
}
|