bao-mcp-releases

Activate-Intelligence/bao-mcp-releases

3.1

If you are the rightful owner of bao-mcp-releases and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Bao MCP Server is designed to manage and distribute updates for the Bao Literary Archive, ensuring secure and efficient version control.

Bao MCP Server Releases

This repository contains release packages for the Bao Literary Archive MCP Server.

Structure

  • releases.json - Version manifest with download URLs and checksums
  • versions/ - Directory containing release archives

Release Process

  1. Create a new release archive:

    tar -czf source.tar.gz --exclude=node_modules --exclude=.git --exclude=dist src/ package.json tsconfig.json
    
  2. Generate SHA256 checksum:

    shasum -a 256 source.tar.gz
    
  3. Update releases.json with new version info

  4. Create GitHub release and upload archive

  5. Update the "latest" field in releases.json

Auto-Update System

The MCP server checks this repository for updates and can automatically download, build, and install new versions.

Security

All releases include SHA256 checksums for verification. The auto-update system will not install packages that fail checksum validation.

Versioning

Follows semantic versioning (MAJOR.MINOR.PATCH):

  • MAJOR: Breaking changes
  • MINOR: New features, backward compatible
  • PATCH: Bug fixes, backward compatible