@davidfuchs/mcp-uptime-kuma 0.6.2 → 0.6.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 +3 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -200,16 +200,16 @@ Token-based authentication using a JWT token from Uptime Kuma. This method uses
|
|
|
200
200
|
This package includes a handy command-line utility to retrieve a JWT token directly from your Uptime Kuma instance:
|
|
201
201
|
|
|
202
202
|
```bash
|
|
203
|
-
npx @davidfuchs/mcp-uptime-kuma-get-jwt <url> <username> <password> [2fa-token]
|
|
203
|
+
npx -p @davidfuchs/mcp-uptime-kuma mcp-uptime-kuma-get-jwt <url> <username> <password> [2fa-token]
|
|
204
204
|
```
|
|
205
205
|
|
|
206
206
|
**Examples:**
|
|
207
207
|
```bash
|
|
208
208
|
# Without 2FA
|
|
209
|
-
npx @davidfuchs/mcp-uptime-kuma-get-jwt http://localhost:3001 admin mypassword
|
|
209
|
+
npx -p @davidfuchs/mcp-uptime-kuma mcp-uptime-kuma-get-jwt http://localhost:3001 admin mypassword
|
|
210
210
|
|
|
211
211
|
# With 2FA
|
|
212
|
-
npx @davidfuchs/mcp-uptime-kuma-get-jwt http://localhost:3001 admin mypassword 123456
|
|
212
|
+
npx -p @davidfuchs/mcp-uptime-kuma mcp-uptime-kuma-get-jwt http://localhost:3001 admin mypassword 123456
|
|
213
213
|
```
|
|
214
214
|
|
|
215
215
|
**Method 2: Using Docker**
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.6.
|
|
1
|
+
export declare const VERSION = "0.6.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.6.
|
|
1
|
+
export const VERSION = '0.6.3';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidfuchs/mcp-uptime-kuma",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"mcpName": "io.github.DavidFuchs/mcp-uptime-kuma",
|
|
5
5
|
"description": "A Model Context Protocol (MCP) server for Uptime Kuma version 2, supporting both stdio and streamable HTTP transports.",
|
|
6
6
|
"type": "module",
|