@vantageos/vantage-registry-mcp 1.2.0 → 1.5.0

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 (3) hide show
  1. package/package.json +5 -3
  2. package/server.js +1732 -0
  3. package/server.ts +1094 -184
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@vantageos/vantage-registry-mcp",
3
- "version": "1.2.0",
3
+ "version": "1.5.0",
4
4
  "description": "MCP server exposing VantageRegistry Convex functions as Claude Code tools",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "vantage-registry": "./server.ts"
8
8
  },
9
9
  "scripts": {
10
- "build": "tsc --project tsconfig.json",
11
- "dev": "bun run server.ts"
10
+ "build": "esbuild server.ts --bundle --platform=node --format=esm --outfile=server.js --external:convex --external:@modelcontextprotocol/sdk --external:zod --external:dotenv",
11
+ "dev": "bun run server.ts",
12
+ "test": "cd .. && npx vitest run --reporter=verbose --project mcp"
12
13
  },
13
14
  "files": [
14
15
  "server.ts",
@@ -26,6 +27,7 @@
26
27
  },
27
28
  "devDependencies": {
28
29
  "@types/node": "^22.0.0",
30
+ "esbuild": "^0.27.0",
29
31
  "typescript": "^5.9.3"
30
32
  }
31
33
  }