@uptimebolt/mcp-server 1.0.2 → 1.0.3
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 +24 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,16 +25,38 @@ Ask your infrastructure questions in natural language. Instead of navigating das
|
|
|
25
25
|
|
|
26
26
|
## Quick Start
|
|
27
27
|
|
|
28
|
+
### Install globally (recommended)
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm install -g @uptimebolt/mcp-server
|
|
32
|
+
```
|
|
33
|
+
|
|
28
34
|
### Claude Desktop (stdio)
|
|
29
35
|
|
|
30
36
|
Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):
|
|
31
37
|
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"mcpServers": {
|
|
41
|
+
"uptimebolt": {
|
|
42
|
+
"command": "uptimebolt-mcp",
|
|
43
|
+
"env": {
|
|
44
|
+
"UPTIMEBOLT_API_KEY": "your-api-key",
|
|
45
|
+
"UPTIMEBOLT_API_URL": "https://api.uptimebolt.io"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Or without global install, using npx:
|
|
53
|
+
|
|
32
54
|
```json
|
|
33
55
|
{
|
|
34
56
|
"mcpServers": {
|
|
35
57
|
"uptimebolt": {
|
|
36
58
|
"command": "npx",
|
|
37
|
-
"args": ["-y", "
|
|
59
|
+
"args": ["-y", "--package=@uptimebolt/mcp-server", "uptimebolt-mcp"],
|
|
38
60
|
"env": {
|
|
39
61
|
"UPTIMEBOLT_API_KEY": "your-api-key",
|
|
40
62
|
"UPTIMEBOLT_API_URL": "https://api.uptimebolt.io"
|
|
@@ -52,8 +74,7 @@ Add to your project's `.mcp.json`:
|
|
|
52
74
|
{
|
|
53
75
|
"mcpServers": {
|
|
54
76
|
"uptimebolt": {
|
|
55
|
-
"command": "
|
|
56
|
-
"args": ["-y", "@uptimebolt/mcp-server"],
|
|
77
|
+
"command": "uptimebolt-mcp",
|
|
57
78
|
"env": {
|
|
58
79
|
"UPTIMEBOLT_API_KEY": "your-api-key",
|
|
59
80
|
"UPTIMEBOLT_API_URL": "https://api.uptimebolt.io"
|
package/package.json
CHANGED