mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-09 07:42:37 +02:00
39 lines
799 B
Markdown
39 lines
799 B
Markdown
|
|
# Vestige MCPB
|
||
|
|
|
||
|
|
One-click installation bundle for Claude Desktop.
|
||
|
|
|
||
|
|
## For Users
|
||
|
|
|
||
|
|
1. Download `vestige-1.1.0.mcpb` from [GitHub Releases](https://github.com/samvallad33/vestige/releases)
|
||
|
|
2. Double-click to install
|
||
|
|
3. Restart Claude Desktop
|
||
|
|
|
||
|
|
That's it. No npm, no terminal, no config files.
|
||
|
|
|
||
|
|
## For Developers
|
||
|
|
|
||
|
|
### Building the bundle
|
||
|
|
|
||
|
|
```bash
|
||
|
|
# Install mcpb CLI
|
||
|
|
npm install -g @anthropic-ai/mcpb
|
||
|
|
|
||
|
|
# Download binaries from GitHub release
|
||
|
|
./build.sh
|
||
|
|
|
||
|
|
# Pack
|
||
|
|
mcpb pack
|
||
|
|
```
|
||
|
|
|
||
|
|
### Structure
|
||
|
|
|
||
|
|
```
|
||
|
|
vestige-mcpb/
|
||
|
|
├── manifest.json # Bundle metadata
|
||
|
|
├── server/ # Platform binaries (downloaded)
|
||
|
|
│ ├── vestige-mcp-darwin-arm64
|
||
|
|
│ ├── vestige-mcp-linux-x64
|
||
|
|
│ └── vestige-mcp-win32-x64.exe
|
||
|
|
└── vestige-1.1.0.mcpb # Final bundle (generated)
|
||
|
|
```
|