llm-chess-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 +24 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,6 +15,23 @@ runtime needed at deploy time. Maia3 is exported to ONNX once at build time.
|
|
|
15
15
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
|
+
No install needed — run it directly with `npx`:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx -y llm-chess-mcp
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
The Maia3 model is already bundled, so there's no Python, torch, or engine
|
|
25
|
+
binaries to install. `npx` fetches the package on first run and caches it.
|
|
26
|
+
|
|
27
|
+
To install it permanently instead:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm install -g llm-chess-mcp
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Build from source
|
|
34
|
+
|
|
18
35
|
```bash
|
|
19
36
|
pnpm install
|
|
20
37
|
pnpm build
|
|
@@ -58,7 +75,7 @@ Add to `opencode.json` (project) or `~/.config/opencode/opencode.json` (global):
|
|
|
58
75
|
"mcp": {
|
|
59
76
|
"llm-chess-mcp": {
|
|
60
77
|
"type": "local",
|
|
61
|
-
"command": ["
|
|
78
|
+
"command": ["npx", "-y", "llm-chess-mcp"],
|
|
62
79
|
"enabled": true,
|
|
63
80
|
"environment": {
|
|
64
81
|
"LICHESS_TOKEN": "your-token",
|
|
@@ -74,15 +91,15 @@ Add to `opencode.json` (project) or `~/.config/opencode/opencode.json` (global):
|
|
|
74
91
|
Add to `.mcp.json` (project) or `~/.claude.json` (global), or run:
|
|
75
92
|
|
|
76
93
|
```bash
|
|
77
|
-
claude mcp add llm-chess-mcp --
|
|
94
|
+
claude mcp add llm-chess-mcp -- npx -y llm-chess-mcp
|
|
78
95
|
```
|
|
79
96
|
|
|
80
97
|
```json
|
|
81
98
|
{
|
|
82
99
|
"mcpServers": {
|
|
83
100
|
"llm-chess-mcp": {
|
|
84
|
-
"command": "
|
|
85
|
-
"args": ["
|
|
101
|
+
"command": "npx",
|
|
102
|
+
"args": ["-y", "llm-chess-mcp"],
|
|
86
103
|
"env": {
|
|
87
104
|
"LICHESS_TOKEN": "your-token",
|
|
88
105
|
"MAIA3_MODEL": "5m"
|
|
@@ -98,8 +115,8 @@ Add to `~/.codex/config.toml`:
|
|
|
98
115
|
|
|
99
116
|
```toml
|
|
100
117
|
[mcp_servers.llm-chess-mcp]
|
|
101
|
-
command = "
|
|
102
|
-
args = ["
|
|
118
|
+
command = "npx"
|
|
119
|
+
args = ["-y", "llm-chess-mcp"]
|
|
103
120
|
|
|
104
121
|
[mcp_servers.llm-chess-mcp.env]
|
|
105
122
|
LICHESS_TOKEN = "your-token"
|
|
@@ -109,7 +126,7 @@ MAIA3_MODEL = "5m"
|
|
|
109
126
|
Or via the CLI:
|
|
110
127
|
|
|
111
128
|
```bash
|
|
112
|
-
codex mcp add llm-chess-mcp --command
|
|
129
|
+
codex mcp add llm-chess-mcp --command npx --args -y llm-chess-mcp --env LICHESS_TOKEN=your-token
|
|
113
130
|
```
|
|
114
131
|
|
|
115
132
|
## Tools
|