Skip to content

mcp-data-platform-v0.35.8

Choose a tag to compare

@cjimti cjimti released this 07 Mar 23:29
· 295 commits to main since this release
42f0572

Highlights

Consolidates portal/admin configuration into a single-responsibility layout.

Breaking: Portal/Admin Config Consolidation (#197)

Branding fields have moved from the admin: block to portal:. This is a clean break — old keys silently stop working.

Before:

portal:
  enabled: true
  ui: true

admin:
  enabled: true
  portal: true
  portal_title: "My Platform"
  portal_logo: "https://..."

After:

portal:
  enabled: true
  title: "My Platform"
  logo: "https://..."
  logo_light: "https://..."
  logo_dark: "https://..."

admin:
  enabled: true
  persona: admin
  path_prefix: /api/v1/admin

Migration checklist:

  • Move admin.portal_title to portal.title (new default: "MCP Data Platform")
  • Move admin.portal_logo to portal.logo
  • Move admin.portal_logo_light / admin.portal_logo_dark to portal.logo_light / portal.logo_dark
  • Remove admin.portal (no longer used)
  • Remove portal.ui (replaced by portal.enabled as the single gate)

The JSON API response from /api/v1/admin/system/info and /api/v1/admin/public/branding is unchanged — no frontend changes needed.

Installation

Homebrew (macOS)

brew install txn2/tap/mcp-data-platform

Claude Code CLI

claude mcp add mcp-data-platform -- mcp-data-platform

Docker

docker pull ghcr.io/txn2/mcp-data-platform:v0.35.8

Verification

All release artifacts are signed with Cosign. Verify with:

cosign verify-blob --bundle mcp-data-platform_0.35.8_linux_amd64.tar.gz.sigstore.json \
  mcp-data-platform_0.35.8_linux_amd64.tar.gz

Changelog

Others

  • 42f0572: refactor: consolidate portal/admin config and templatize platform name (#197) (@cjimti)

Installation

Homebrew (macOS)

brew install txn2/tap/mcp-data-platform

Claude Code CLI

claude mcp add mcp-data-platform -- mcp-data-platform

Docker

docker pull ghcr.io/txn2/mcp-data-platform:v0.35.8

Verification

All release artifacts are signed with Cosign. Verify with:

cosign verify-blob --bundle mcp-data-platform_0.35.8_linux_amd64.tar.gz.sigstore.json \
  mcp-data-platform_0.35.8_linux_amd64.tar.gz