-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@statuser/mcp",
"version": "0.1.5",
"description": "MCP server for Statuser.cloud — monitor servers, manage incidents and status pages from your AI client",
"keywords": [
"mcp",
"model-context-protocol",
"statuser",
"monitoring",
"uptime",
"status-page",
"incidents",
"claude"
],
"homepage": "https://statuser.cloud",
"repository": {
"type": "git",
"url": "git+https://github.com/statuser-cloud/mcp.git"
},
"bugs": {
"url": "https://github.com/statuser-cloud/mcp/issues"
},
"license": "MIT",
"type": "module",
"bin": {
"statuser-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.17"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"fetch-spec": "tsx scripts/fetch-spec.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint \"src/**/*.ts\" \"scripts/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"scripts/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"undici": "^7.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"openapi-typescript": "^7.5.2",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}