@uptimebolt/mcp-server 1.0.1 → 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.
Files changed (2) hide show
  1. package/README.md +24 -3
  2. package/package.json +2 -2
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", "@uptimebolt/mcp-server"],
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": "npx",
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
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@uptimebolt/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "UptimeBolt MCP Server — AI-powered infrastructure monitoring tools for Claude, CI/CD pipelines, and MCP clients",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "bin": {
9
- "@uptimebolt/mcp-server": "dist/server.js",
9
+ "mcp-server": "dist/server.js",
10
10
  "uptimebolt-mcp": "dist/server.js",
11
11
  "uptimebolt-mcp-http": "dist/http-server.js"
12
12
  },