You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also run the server directly using `npx` without cloning the repository. This is a convenient way to run the server without a full installation.
71
+
72
+
1. Open MCP settings
73
+
2. Navigate to the MCP configuration section
74
+
3. Add the following configuration:
75
+
76
+
```json
77
+
{
78
+
"mcpServers": {
79
+
"backlog": {
80
+
"command": "npx",
81
+
"args": [
82
+
"backlog-mcp-server"
83
+
],
84
+
"env": {
85
+
"BACKLOG_DOMAIN": "your-domain.backlog.com",
86
+
"BACKLOG_API_KEY": "your-api-key"
87
+
}
88
+
}
89
+
}
90
+
}
91
+
```
92
+
93
+
Replace `your-domain.backlog.com` with your Backlog domain and `your-api-key` with your Backlog API key.
0 commit comments