vestige/packages/vestige-mcpb/manifest.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

33 lines
910 B
JSON

{
"manifest_version": "0.2",
"name": "vestige",
"display_name": "Vestige",
"version": "1.1.0",
"description": "AI memory system built on 130 years of cognitive science. FSRS-6 spaced repetition, synaptic tagging, and local-first storage.",
"author": {
"name": "Sam Valladares",
"url": "https://github.com/samvallad33"
},
"repository": {
"type": "git",
"url": "https://github.com/samvallad33/vestige"
},
"license": "MIT",
"server": {
"type": "binary",
"entry_point": "server/vestige-mcp-darwin-arm64",
"mcp_config": {
"command": "${__dirname}/server/vestige-mcp-darwin-arm64",
"args": [],
"env": {},
"platform_overrides": {
"win32": {
"command": "${__dirname}/server/vestige-mcp-win32-x64.exe"
},
"linux": {
"command": "${__dirname}/server/vestige-mcp-linux-x64"
}
}
}
}
}