vme-mcp-server 0.1.9 → 0.1.10

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/dist/README.md CHANGED
@@ -176,6 +176,6 @@ Built with TypeScript and the Model Context Protocol for seamless Claude integra
176
176
 
177
177
  ## Version
178
178
 
179
- Current version: 0.1.9
179
+ Current version: 0.1.10
180
180
 
181
181
  For development documentation and contribution guidelines, see the project repository.
package/dist/server.js CHANGED
@@ -43,7 +43,7 @@ process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
43
43
  // Create VME MCP server with modular architecture
44
44
  const server = new index_js_1.Server({
45
45
  name: "vme-mcp-server",
46
- version: "0.1.9",
46
+ version: "0.1.10",
47
47
  }, {
48
48
  capabilities: {
49
49
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vme-mcp-server",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "",
5
5
  "main": "dist/server.js",
6
6
  "bin": {
@@ -10,13 +10,19 @@
10
10
  "build": "tsc",
11
11
  "start": "node dist/server.js",
12
12
  "dev": "tsx watch src/server.ts",
13
+ "prepare": "husky install",
13
14
  "prepublishOnly": "npm run build && echo '#!/usr/bin/env node' | cat - dist/server.js > temp && mv temp dist/server.js && chmod +x dist/server.js && cp README-NPM.md dist/README.md",
14
- "test": "mocha tests/**/*.test.js",
15
+ "test": "npm run test:critical",
15
16
  "test:unit": "mocha tests/unit/*.test.js",
17
+ "test:binary": "mocha tests/binary/*.test.js",
18
+ "test:critical": "npm run test:binary && npm run test:mcp",
16
19
  "test:integration": "mocha tests/integration/*.test.js",
17
- "test:e2e": "mocha tests/e2e/*.test.js",
18
- "test:performance": "mocha tests/performance/*.test.js",
19
- "test:coverage": "nyc mocha tests/**/*.test.js"
20
+ "test:mcp": "mocha tests/integration/mcp-protocol.test.js",
21
+ "test:package": "mocha tests/package/*.test.js",
22
+ "test:all": "mocha tests/**/*.test.js",
23
+ "test:coverage": "nyc mocha tests/**/*.test.js",
24
+ "lint": "echo 'Linting not configured yet'",
25
+ "precommit": "npm run lint && npm run test:critical && npm run build"
20
26
  },
21
27
  "keywords": [
22
28
  "mcp",
@@ -43,11 +49,13 @@
43
49
  "axios": "^1.9.0",
44
50
  "dotenv": "^16.5.0",
45
51
  "tsx": "^4.19.4",
46
- "typescript": "^5.3.3"
52
+ "typescript": "^5.3.3",
53
+ "vme-mcp-server": "^0.1.9"
47
54
  },
48
55
  "devDependencies": {
49
56
  "@types/node": "^22.15.29",
50
57
  "chai": "^5.2.0",
58
+ "husky": "^9.1.7",
51
59
  "mocha": "^10.2.0",
52
60
  "nyc": "^15.1.0"
53
61
  }