Skip to content

Commit 296131b

Browse files
committed
docs: remove non-functional mcp-proxy parameter from all MCP configs
The "mcp-proxy" parameter in MCP configuration args arrays was not functional and has been removed from all documentation. Changes: - Removed "mcp-proxy" from all JSON MCP configuration examples - Updated Python integration examples to use correct args format - Removed CLI command examples using "mcp-proxy" parameter - Updated notes to reflect daemon auto-starts without manual config - Cleaned up CHANGELOG and RELEASE_CHECKLIST references Correct MCP config format: ```json { "mcpServers": { "gorev": { "command": "npx", "args": ["-y", "@mehmetsenol/gorev-mcp-server@latest"] } } } ``` Files updated (14 total): - README.md, README.tr.md - docs/guides/mcp-config-examples.md (critical) - docs/guides/getting-started/*.md (3 files) - docs/guides/features/*.md (2 files) - docs/api/integration-examples.md - docs/examples/quick-start-examples.md - gorev-npm/README.md, gorev-web/README.md - CHANGELOG.md, RELEASE_CHECKLIST_v0.16.3.md
1 parent 1ad22ed commit 296131b

14 files changed

Lines changed: 43 additions & 73 deletions

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4848
- `gorev daemon` - Daemon lifecycle management
4949
- `gorev daemon-status` - Check daemon status
5050
- `gorev daemon-stop` - Stop running daemon
51-
- `gorev mcp-proxy` - MCP proxy to daemon (for AI assistants)
5251

5352
### Changed
5453

README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ npx @mehmetsenol/gorev-mcp-server serve
313313
"command": "npx",
314314
"args": [
315315
"-y",
316-
"@mehmetsenol/gorev-mcp-server@latest",
317-
"mcp-proxy"
316+
"@mehmetsenol/gorev-mcp-server@latest"
318317
],
319318
"env": {
320319
"GOREV_LANG": "en"
@@ -335,8 +334,7 @@ npx @mehmetsenol/gorev-mcp-server serve
335334
"command": "npx",
336335
"args": [
337336
"-y",
338-
"@mehmetsenol/gorev-mcp-server@latest",
339-
"mcp-proxy"
337+
"@mehmetsenol/gorev-mcp-server@latest"
340338
],
341339
"env": {
342340
"GOREV_LANG": "en"
@@ -356,8 +354,7 @@ npx @mehmetsenol/gorev-mcp-server serve
356354
"command": "npx",
357355
"args": [
358356
"-y",
359-
"@mehmetsenol/gorev-mcp-server@latest",
360-
"mcp-proxy"
357+
"@mehmetsenol/gorev-mcp-server@latest"
361358
],
362359
"env": {
363360
"GOREV_LANG": "en"
@@ -408,8 +405,7 @@ If you get `ENOENT: spawn npx` error:
408405
"gorev": {
409406
"command": "npx",
410407
"args": [
411-
"@mehmetsenol/gorev-mcp-server@latest",
412-
"mcp-proxy"
408+
"@mehmetsenol/gorev-mcp-server@latest"
413409
]
414410
}
415411
}
@@ -473,7 +469,6 @@ code --install-extension mehmetsenol.gorev-vscode
473469
gorev daemon --detach # Start daemon in background
474470
gorev daemon-status # Check daemon status
475471
gorev daemon-stop # Stop running daemon
476-
gorev mcp-proxy # MCP proxy (for AI assistants)
477472

478473
# Development/testing (foreground mode)
479474
gorev serve # Normal mode

README.tr.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,7 @@ npx @mehmetsenol/gorev-mcp-server serve
247247
"command": "npx",
248248
"args": [
249249
"-y",
250-
"@mehmetsenol/gorev-mcp-server@latest",
251-
"mcp-proxy"
250+
"@mehmetsenol/gorev-mcp-server@latest"
252251
],
253252
"env": {
254253
"GOREV_LANG": "tr"
@@ -268,8 +267,7 @@ npx @mehmetsenol/gorev-mcp-server serve
268267
"command": "npx",
269268
"args": [
270269
"-y",
271-
"@mehmetsenol/gorev-mcp-server@latest",
272-
"mcp-proxy"
270+
"@mehmetsenol/gorev-mcp-server@latest"
273271
],
274272
"env": {
275273
"GOREV_LANG": "tr"
@@ -289,8 +287,7 @@ npx @mehmetsenol/gorev-mcp-server serve
289287
"command": "npx",
290288
"args": [
291289
"-y",
292-
"@mehmetsenol/gorev-mcp-server@latest",
293-
"mcp-proxy"
290+
"@mehmetsenol/gorev-mcp-server@latest"
294291
],
295292
"env": {
296293
"GOREV_LANG": "en"
@@ -568,7 +565,6 @@ Cursor'da MCP entegrasyonu için:
568565
gorev daemon --detach # Daemon'u arka planda başlat
569566
gorev daemon-status # Daemon durumunu kontrol et
570567
gorev daemon-stop # Çalışan daemon'u durdur
571-
gorev mcp-proxy # MCP proxy (AI asistanlar için)
572568

573569
# Geliştirme/test (foreground mod)
574570
gorev serve # Normal mod

RELEASE_CHECKLIST_v0.16.3.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ npx @mehmetsenol/[email protected]
140140
- `gorev daemon` - Start/manage daemon process
141141
- `gorev daemon-status` - Check daemon status
142142
- `gorev daemon-stop` - Stop running daemon
143-
- `gorev mcp-proxy` - MCP proxy for AI assistants
144143

145144
### 🐛 Bug Fixes
146145

docs/api/integration-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async def main():
3535
# Connect to Gorev MCP Server
3636
server_params = StdioServerParameters(
3737
command="npx",
38-
args=["-y", "@mehmetsenol/gorev-mcp-server@latest", "mcp-proxy"],
38+
args=["-y", "@mehmetsenol/gorev-mcp-server@latest"],
3939
env={"GOREV_LANG": "en"}
4040
)
4141

docs/examples/quick-start-examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) o
6666
"mcpServers": {
6767
"gorev": {
6868
"command": "npx",
69-
"args": ["-y", "@mehmetsenol/gorev-mcp-server@latest", "mcp-proxy"],
69+
"args": ["-y", "@mehmetsenol/gorev-mcp-server@latest"],
7070
"env": {
7171
"GOREV_LANG": "en"
7272
}
@@ -453,7 +453,7 @@ from mcp.client.stdio import stdio_client
453453
async def generate_daily_report():
454454
server_params = StdioServerParameters(
455455
command="npx",
456-
args=["-y", "@mehmetsenol/gorev-mcp-server@latest", "mcp-proxy"],
456+
args=["-y", "@mehmetsenol/gorev-mcp-server@latest"],
457457
env={"GOREV_LANG": "en"}
458458
)
459459

docs/guides/features/multi-workspace.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,7 @@ Don't specify `GOREV_DB_PATH`. Gorev will:
247247
"command": "npx",
248248
"args": [
249249
"-y",
250-
"@mehmetsenol/gorev-mcp-server@latest",
251-
"mcp-proxy"
250+
"@mehmetsenol/gorev-mcp-server@latest"
252251
],
253252
"env": {
254253
"GOREV_LANG": "en"
@@ -271,8 +270,7 @@ Specify `GOREV_DB_PATH` for each workspace:
271270
"command": "npx",
272271
"args": [
273272
"-y",
274-
"@mehmetsenol/gorev-mcp-server@latest",
275-
"mcp-proxy"
273+
"@mehmetsenol/gorev-mcp-server@latest"
276274
],
277275
"env": {
278276
"GOREV_DB_PATH": "/projects/project-a/.gorev/gorev.db"
@@ -291,8 +289,7 @@ Specify `GOREV_DB_PATH` for each workspace:
291289
"command": "npx",
292290
"args": [
293291
"-y",
294-
"@mehmetsenol/gorev-mcp-server@latest",
295-
"mcp-proxy"
292+
"@mehmetsenol/gorev-mcp-server@latest"
296293
],
297294
"env": {
298295
"GOREV_DB_PATH": "/projects/project-b/.gorev/gorev.db"

docs/guides/features/web-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gorev v0.16.0 introduces an **embedded web UI** - a modern React + TypeScript in
2828

2929
```bash
3030
# Using NPX (no installation)
31-
npx @mehmetsenol/gorev-mcp-server@latest mcp-proxy
31+
npx @mehmetsenol/gorev-mcp-server@latest
3232

3333
# Or if installed globally
3434
gorev daemon --detach

docs/guides/getting-started/installation.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Add this configuration to your Claude Desktop config file:
6969
"mcpServers": {
7070
"gorev": {
7171
"command": "/usr/local/bin/gorev",
72-
"args": ["mcp-proxy"],
72+
"args": [],
7373
"env": {
7474
"GOREV_DATA_DIR": "~/.gorev"
7575
}
@@ -99,7 +99,7 @@ Install an MCP extension and add to `settings.json`:
9999
"mcp.servers": {
100100
"gorev": {
101101
"command": "/usr/local/bin/gorev",
102-
"args": ["mcp-proxy"]
102+
"args": []
103103
}
104104
}
105105
}
@@ -133,8 +133,7 @@ docker run -d --name gorev-server \
133133
"args": [
134134
"run", "--rm", "-i",
135135
"-v", "gorev-data:/data",
136-
"ghcr.io/msenol/gorev:latest",
137-
"mcp-proxy"
136+
"ghcr.io/msenol/gorev:latest"
138137
]
139138
}
140139
}
@@ -159,7 +158,7 @@ docker run -d --name gorev-server \
159158
"mcpServers": {
160159
"gorev": {
161160
"command": "gorev",
162-
"args": ["mcp-proxy"]
161+
"args": []
163162
}
164163
}
165164
}
@@ -172,7 +171,7 @@ docker run -d --name gorev-server \
172171
"mcpServers": {
173172
"gorev": {
174173
"command": "gorev",
175-
"args": ["mcp-proxy"],
174+
"args": [],
176175
"env": {
177176
"GOREV_LOG_LEVEL": "debug"
178177
}
@@ -188,14 +187,14 @@ docker run -d --name gorev-server \
188187
"mcpServers": {
189188
"gorev-personal": {
190189
"command": "gorev",
191-
"args": ["mcp-proxy"],
190+
"args": [],
192191
"env": {
193192
"GOREV_DATA_DIR": "~/.gorev-personal"
194193
}
195194
},
196195
"gorev-work": {
197196
"command": "gorev",
198-
"args": ["mcp-proxy"],
197+
"args": [],
199198
"env": {
200199
"GOREV_DATA_DIR": "~/.gorev-work"
201200
}

docs/guides/getting-started/quick-start.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gorev is a task management system designed for AI assistants (Claude, Copilot, e
2626

2727
```bash
2828
# Use directly with NPX (no installation)
29-
npx @mehmetsenol/gorev-mcp-server@latest mcp-proxy
29+
npx @mehmetsenol/gorev-mcp-server@latest
3030
```
3131

3232
Or install globally:
@@ -72,7 +72,7 @@ npx @mehmetsenol/gorev-mcp-server init
7272
### 2. Start Server
7373

7474
```bash
75-
npx @mehmetsenol/gorev-mcp-server@latest mcp-proxy
75+
npx @mehmetsenol/gorev-mcp-server@latest
7676
```
7777

7878
**Output**:
@@ -142,8 +142,7 @@ npx @mehmetsenol/gorev-mcp-server task create \
142142
"command": "npx",
143143
"args": [
144144
"-y",
145-
"@mehmetsenol/gorev-mcp-server@latest",
146-
"mcp-proxy"
145+
"@mehmetsenol/gorev-mcp-server@latest"
147146
],
148147
"env": {
149148
"GOREV_LANG": "en"
@@ -176,8 +175,7 @@ Claude should respond with your task list!
176175
"command": "npx",
177176
"args": [
178177
"-y",
179-
"@mehmetsenol/gorev-mcp-server@latest",
180-
"mcp-proxy"
178+
"@mehmetsenol/gorev-mcp-server@latest"
181179
],
182180
"env": {
183181
"GOREV_LANG": "en"
@@ -293,7 +291,7 @@ npx @mehmetsenol/gorev-mcp-server task list
293291

294292
```bash
295293
# Server
296-
npx @mehmetsenol/gorev-mcp-server@latest mcp-proxy # Start server
294+
npx @mehmetsenol/gorev-mcp-server@latest # Start server
297295
npx @mehmetsenol/gorev-mcp-server --version # Version info
298296

299297
# Workspace

0 commit comments

Comments
 (0)