harness-mcp-v2 0.8.4 → 0.8.5

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/build/index.js +0 -0
  2. package/package.json +18 -20
package/build/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harness-mcp-v2",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "Give AI agents full access to the Harness.io platform — manage pipelines, deployments, cloud costs, chaos engineering, feature flags, SEI, and 125+ resource types through 11 MCP tools",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -10,20 +10,6 @@
10
10
  "files": [
11
11
  "build/"
12
12
  ],
13
- "scripts": {
14
- "build": "tsc",
15
- "dev": "tsc --watch",
16
- "start": "node build/index.js stdio",
17
- "start:http": "node build/index.js http",
18
- "inspect": "npx @modelcontextprotocol/inspector node build/index.js stdio",
19
- "typecheck": "tsc --noEmit",
20
- "sync-schemas": "node scripts/sync-schemas.js",
21
- "test": "vitest run",
22
- "test:watch": "vitest",
23
- "docker:build": "docker build -t harness-mcp-server .",
24
- "docker:run": "docker run --rm -p 3000:3000 --env-file .env harness-mcp-server",
25
- "prepublishOnly": "pnpm build"
26
- },
27
13
  "keywords": [
28
14
  "mcp",
29
15
  "harness",
@@ -36,12 +22,12 @@
36
22
  "license": "Apache-2.0",
37
23
  "repository": {
38
24
  "type": "git",
39
- "url": "https://github.com/thisrohangupta/harness-mcp-v2.git"
25
+ "url": "https://github.com/harness/mcp-server.git"
40
26
  },
41
27
  "bugs": {
42
- "url": "https://github.com/thisrohangupta/harness-mcp-v2/issues"
28
+ "url": "https://github.com/harness/mcp-server/issues"
43
29
  },
44
- "homepage": "https://github.com/thisrohangupta/harness-mcp-v2#readme",
30
+ "homepage": "https://github.com/harness/mcp-server#readme",
45
31
  "dependencies": {
46
32
  "@modelcontextprotocol/sdk": "^1.27.1",
47
33
  "@resvg/resvg-js": "^2.6.2",
@@ -58,8 +44,20 @@
58
44
  "typescript": "^5.7.3",
59
45
  "vitest": "^3.0.6"
60
46
  },
61
- "packageManager": "pnpm@10.18.2",
62
47
  "engines": {
63
48
  "node": ">=20.0.0"
49
+ },
50
+ "scripts": {
51
+ "build": "tsc",
52
+ "dev": "tsc --watch",
53
+ "start": "node build/index.js stdio",
54
+ "start:http": "node build/index.js http",
55
+ "inspect": "npx @modelcontextprotocol/inspector node build/index.js stdio",
56
+ "typecheck": "tsc --noEmit",
57
+ "sync-schemas": "node scripts/sync-schemas.js",
58
+ "test": "vitest run",
59
+ "test:watch": "vitest",
60
+ "docker:build": "docker build -t harness-mcp-server .",
61
+ "docker:run": "docker run --rm -p 3000:3000 --env-file .env harness-mcp-server"
64
62
  }
65
- }
63
+ }