bamboo-mcp-server 1.0.8 → 1.0.9
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 +17 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Bamboo MCP Server
|
|
1
|
+
# Atlassian Bamboo MCP Server
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/bamboo-mcp-server)
|
|
4
4
|
[](./LICENSE)
|
|
@@ -90,7 +90,7 @@ The server requires these environment variables:
|
|
|
90
90
|
Run this command:
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
claude mcp add bamboo --
|
|
93
|
+
claude mcp add bamboo -- npx -y bamboo-mcp-server@latest
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
Or add to `~/.claude/settings.json`:
|
|
@@ -99,8 +99,8 @@ Or add to `~/.claude/settings.json`:
|
|
|
99
99
|
{
|
|
100
100
|
"mcpServers": {
|
|
101
101
|
"bamboo": {
|
|
102
|
-
"command": "
|
|
103
|
-
"args": ["
|
|
102
|
+
"command": "npx",
|
|
103
|
+
"args": ["-y", "bamboo-mcp-server@latest"],
|
|
104
104
|
"env": {
|
|
105
105
|
"BAMBOO_URL": "https://bamboo.example.com",
|
|
106
106
|
"BAMBOO_TOKEN": "your-token"
|
|
@@ -123,8 +123,8 @@ Add to your config file:
|
|
|
123
123
|
{
|
|
124
124
|
"mcpServers": {
|
|
125
125
|
"bamboo": {
|
|
126
|
-
"command": "
|
|
127
|
-
"args": ["
|
|
126
|
+
"command": "npx",
|
|
127
|
+
"args": ["-y", "bamboo-mcp-server@latest"],
|
|
128
128
|
"env": {
|
|
129
129
|
"BAMBOO_URL": "https://bamboo.example.com",
|
|
130
130
|
"BAMBOO_TOKEN": "your-token",
|
|
@@ -146,8 +146,8 @@ Add to `~/.cursor/mcp.json`:
|
|
|
146
146
|
{
|
|
147
147
|
"mcpServers": {
|
|
148
148
|
"bamboo": {
|
|
149
|
-
"command": "
|
|
150
|
-
"args": ["
|
|
149
|
+
"command": "npx",
|
|
150
|
+
"args": ["-y", "bamboo-mcp-server@latest"],
|
|
151
151
|
"env": {
|
|
152
152
|
"BAMBOO_URL": "https://bamboo.example.com",
|
|
153
153
|
"BAMBOO_TOKEN": "your-token"
|
|
@@ -185,9 +185,16 @@ docker build -t bamboo-mcp-server .
|
|
|
185
185
|
docker run -i --rm \
|
|
186
186
|
-e BAMBOO_URL="https://bamboo.example.com" \
|
|
187
187
|
-e BAMBOO_TOKEN="your-token" \
|
|
188
|
+
-e BAMBOO_PROXY="http://host.docker.internal:8080" \
|
|
188
189
|
bamboo-mcp-server
|
|
189
190
|
```
|
|
190
191
|
|
|
192
|
+
#### Proxy configuration
|
|
193
|
+
|
|
194
|
+
When using a proxy from Docker:
|
|
195
|
+
- **macOS/Windows**: Use `host.docker.internal` to reach the host (e.g., `http://host.docker.internal:8080`)
|
|
196
|
+
- **Linux**: Use `--network host` flag or the host's actual IP address
|
|
197
|
+
|
|
191
198
|
#### Use with Claude Desktop
|
|
192
199
|
|
|
193
200
|
```json
|
|
@@ -199,6 +206,7 @@ docker run -i --rm \
|
|
|
199
206
|
"run", "-i", "--rm",
|
|
200
207
|
"-e", "BAMBOO_URL=https://bamboo.example.com",
|
|
201
208
|
"-e", "BAMBOO_TOKEN=your-token",
|
|
209
|
+
"-e", "BAMBOO_PROXY=http://host.docker.internal:8080",
|
|
202
210
|
"bamboo-mcp-server"
|
|
203
211
|
]
|
|
204
212
|
}
|
|
@@ -215,6 +223,7 @@ services:
|
|
|
215
223
|
environment:
|
|
216
224
|
- BAMBOO_URL=https://bamboo.example.com
|
|
217
225
|
- BAMBOO_TOKEN=${BAMBOO_TOKEN}
|
|
226
|
+
- BAMBOO_PROXY=http://host.docker.internal:8080
|
|
218
227
|
stdin_open: true
|
|
219
228
|
```
|
|
220
229
|
|