backlog.md-linux-x64 1.37.0 → 1.38.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 -1
- package/backlog +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -197,12 +197,18 @@ Use the shared `backlog` server name everywhere – the MCP server auto-detects
|
|
|
197
197
|
"mcpServers": {
|
|
198
198
|
"backlog": {
|
|
199
199
|
"command": "backlog",
|
|
200
|
-
"args": ["mcp", "start"]
|
|
200
|
+
"args": ["mcp", "start"],
|
|
201
|
+
"env": {
|
|
202
|
+
"BACKLOG_CWD": "/absolute/path/to/your/project"
|
|
203
|
+
}
|
|
201
204
|
}
|
|
202
205
|
}
|
|
203
206
|
}
|
|
204
207
|
```
|
|
205
208
|
|
|
209
|
+
If your IDE can't set the process working directory for MCP servers, set `BACKLOG_CWD` as shown above.
|
|
210
|
+
If your IDE supports custom args but not env vars, you can also use `["mcp", "start", "--cwd", "/absolute/path/to/your/project"]`.
|
|
211
|
+
|
|
206
212
|
> [!IMPORTANT]
|
|
207
213
|
> When adding the MCP server manually, you should add some extra instructions in your CLAUDE.md/AGENTS.md files to inform the agent about Backlog.md.
|
|
208
214
|
> This step is not required when using `backlog init` as it adds these instructions automatically.
|
package/backlog
CHANGED
|
Binary file
|