vestige/packages/vestige-mcp-npm/package.json
Sam Valladares ed6aeadb70 feat: add MCPB bundle and fix npm package distribution
Two distribution methods now available:

1. npm (for Claude Code / developers):
   npm install -g vestige-mcp-server
   claude mcp add vestige vestige-mcp -s user

2. MCPB (for Claude Desktop / one-click install):
   Download vestige-1.1.0.mcpb from releases, double-click

Changes:
- Renamed npm package to vestige-mcp-server (vestige-mcp was taken)
- Fixed postinstall to download binaries from GitHub releases
- Added vestige-mcpb package with manifest and build script
- Uploaded .mcpb bundle to v1.1.0 release

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-27 00:15:17 -06:00

37 lines
673 B
JSON

{
"name": "vestige-mcp-server",
"version": "1.0.0",
"description": "Vestige MCP Server - AI Memory System for Claude and other assistants",
"bin": {
"vestige-mcp": "bin/vestige-mcp.js",
"vestige": "bin/vestige.js"
},
"scripts": {
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"mcp",
"claude",
"ai",
"memory",
"vestige"
],
"author": "Sam Valladares",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samvallad33/vestige.git"
},
"engines": {
"node": ">=18"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
]
}