-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.1 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "help-scout-mcp-server",
"version": "1.7.0",
"mcpName": "io.github.drewburchfield/help-scout-mcp",
"description": "Search Help Scout conversations, customers, organizations, threads, and inboxes with AI assistants",
"main": "dist/index.js",
"type": "module",
"bin": {
"help-scout-mcp-server": "dist/index.js"
},
"files": [
"dist/",
"mcp.json",
"README.md",
"LICENSE",
"claude-desktop-config.json"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit",
"security": "semgrep --config .semgrep.yml .",
"security:ci": "semgrep ci",
"test": "jest",
"test:mcp": "node tests/test-mcp-client.cjs",
"test:forensic": "node tests/test-forensic-scenarios.cjs",
"test:docker": "node tests/test-docker.cjs",
"test:docker:ci": "node tests/test-docker-ci.cjs",
"clean": "rimraf dist",
"version:patch": "node scripts/bump-version.cjs patch",
"version:minor": "node scripts/bump-version.cjs minor",
"version:major": "node scripts/bump-version.cjs major",
"prepublishOnly": "npm run clean && npm run build",
"prepack": "npm run build",
"mcpb:build": "node scripts/build-mcpb.js",
"mcpb:pack": "npm run mcpb:build && cd helpscout-mcp-extension && npx @anthropic-ai/mcpb pack",
"build:all": "npm run build && npm run mcpb:build",
"sync:plugin": "rm -rf plugins/helpscout-navigator && git clone --depth 1 https://github.com/drewburchfield/helpscout-navigator.git plugins/helpscout-navigator && rm -rf plugins/helpscout-navigator/.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"modelcontextprotocol",
"mcp-server",
"help-scout",
"help-scout-api",
"helpscout",
"help scout",
"customer-support",
"claude-cowork",
"claude-code-plugin",
"claude-desktop",
"typescript",
"nodejs"
],
"author": {
"name": "Drew Burchfield",
"url": "https://github.com/drewburchfield"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/drewburchfield/help-scout-mcp-server.git"
},
"homepage": "https://github.com/drewburchfield/help-scout-mcp-server#readme",
"bugs": {
"url": "https://github.com/drewburchfield/help-scout-mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"lru-cache": "^10.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@anthropic-ai/mcpb": "2.0.1",
"@types/jest": "^29.5.8",
"@types/nock": "^10.0.3",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"nock": "^14.0.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"cross-spawn": "^7.0.6",
"brace-expansion": "^2.0.2",
"minimatch": "^9.0.7",
"hono": "4.12.4",
"@hono/node-server": "1.19.10"
}
}