make-runner-mcp 2.1.0 → 2.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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -142,7 +142,7 @@ The server is the same everywhere — only the config file and its shape
|
|
|
142
142
|
differ per client. Things that change between projects/teams:
|
|
143
143
|
|
|
144
144
|
- `PROJECT_DIR` — the target project's root.
|
|
145
|
-
- `#v2.1.
|
|
145
|
+
- `#v2.1.1` — bump this to whatever tag you've actually released. Always
|
|
146
146
|
pin to a release tag, never `#main`: for a tool that executes commands,
|
|
147
147
|
an unpinned branch reference means a bad push could silently change what
|
|
148
148
|
runs on everyone's machine.
|
|
@@ -157,7 +157,7 @@ differ per client. Things that change between projects/teams:
|
|
|
157
157
|
"mcpServers": {
|
|
158
158
|
"makeRunner": {
|
|
159
159
|
"command": "npx",
|
|
160
|
-
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.
|
|
160
|
+
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.1"],
|
|
161
161
|
"env": { "PROJECT_DIR": "/path/to/project", "MCP_TRANSPORT": "stdio" }
|
|
162
162
|
}
|
|
163
163
|
}
|
|
@@ -171,13 +171,13 @@ Project-level `.mcp.json` at the repo root (checked in, shared with the team):
|
|
|
171
171
|
"mcpServers": {
|
|
172
172
|
"makeRunner": {
|
|
173
173
|
"command": "npx",
|
|
174
|
-
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.
|
|
174
|
+
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.1"],
|
|
175
175
|
"env": { "PROJECT_DIR": "/path/to/project", "MCP_TRANSPORT": "stdio" }
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
```
|
|
180
|
-
Or via the CLI: `claude mcp add makeRunner -e PROJECT_DIR=/path/to/project -e MCP_TRANSPORT=stdio -- npx -y github:davindermahal/make-runner-mcp#v2.1.
|
|
180
|
+
Or via the CLI: `claude mcp add makeRunner -e PROJECT_DIR=/path/to/project -e MCP_TRANSPORT=stdio -- npx -y github:davindermahal/make-runner-mcp#v2.1.1`
|
|
181
181
|
|
|
182
182
|
### Claude Desktop
|
|
183
183
|
`claude_desktop_config.json` (Settings → Developer → Edit Config):
|
|
@@ -186,7 +186,7 @@ Or via the CLI: `claude mcp add makeRunner -e PROJECT_DIR=/path/to/project -e MC
|
|
|
186
186
|
"mcpServers": {
|
|
187
187
|
"makeRunner": {
|
|
188
188
|
"command": "npx",
|
|
189
|
-
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.
|
|
189
|
+
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.1"],
|
|
190
190
|
"env": { "PROJECT_DIR": "/path/to/project", "MCP_TRANSPORT": "stdio" }
|
|
191
191
|
}
|
|
192
192
|
}
|
|
@@ -200,7 +200,7 @@ Or via the CLI: `claude mcp add makeRunner -e PROJECT_DIR=/path/to/project -e MC
|
|
|
200
200
|
"mcpServers": {
|
|
201
201
|
"makeRunner": {
|
|
202
202
|
"command": "npx",
|
|
203
|
-
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.
|
|
203
|
+
"args": ["-y", "github:davindermahal/make-runner-mcp#v2.1.1"],
|
|
204
204
|
"env": { "PROJECT_DIR": "/path/to/project", "MCP_TRANSPORT": "stdio" }
|
|
205
205
|
}
|
|
206
206
|
}
|
|
@@ -232,7 +232,7 @@ on this machine):
|
|
|
232
232
|
PROJECT_DIR=/path/to/project \
|
|
233
233
|
MCP_HTTP_TOKEN=$(openssl rand -hex 24) \
|
|
234
234
|
MCP_HTTP_PORT=8791 \
|
|
235
|
-
npx -y github:davindermahal/make-runner-mcp#v2.1.
|
|
235
|
+
npx -y github:davindermahal/make-runner-mcp#v2.1.1
|
|
236
236
|
```
|
|
237
237
|
|
|
238
238
|
Generate a real random token (`openssl rand -hex 24` or equivalent) and
|
package/package.json
CHANGED