You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an MCPB bundle template so generated local MCP servers can ship as one-click installable .mcpb bundles for compatible desktop hosts.
Current facts
MCP Bundles (.mcpb) are ZIP archives containing a local MCP server and a manifest.json that describes the server and its capabilities.
The MCPB project is the renamed successor of DXT/Desktop Extensions:
dxt CLI is now mcpb.
.dxt files are now .mcpb files.
@anthropic-ai/dxt is moving to @anthropic-ai/mcpb.
Claude for macOS and Windows uses the MCPB implementation for single-click local MCP server installation, configuration, verification, and automatic updates.
Bundle creation flow is currently mcpb init to create manifest.json, mcpb validate to validate it, and mcpb pack to create the .mcpb archive.
Requirements
Add a template path that emits a valid MCPB bundle layout for generated rmcp-template services.
Generate or maintain manifest.json according to the MCPB manifest spec.
Package the local server binary or launcher and any required assets/config defaults.
Support stdio MCP launch cleanly; logs must not corrupt JSON-RPC stdout.
Include user-configurable inputs/variables in the manifest for env vars, tokens, URLs, and other generated service settings.
Include icons/metadata where appropriate.
Add build/pack commands, likely via xtask, just, or release tooling.
Add validation in CI that the generated bundle manifest is valid and the archive can be produced.
Coordinate versioning with release-please/release components and npm/native artifact work where relevant.
Implementation phases
Define bundle layout.
Decide generated path, likely dist/mcpb/<service>/ or packages/mcpb/.
Decide whether the bundle contains native binaries directly or a launcher that invokes packaged/release artifacts.
Decide how generated config/env inputs map into MCPB manifest user configuration.
Generate manifest.
Add a template for manifest.json populated from scaffold/service metadata.
Include command, args, env/user config, tools/capabilities summary, icon metadata, and version.
Keep secret values as user config inputs, not embedded literals.
Build and pack.
Add xtask/just commands for mcpb validate and mcpb pack.
Add CI validation for generated fixture bundles.
Add release artifact upload for .mcpb when the profile is enabled.
MCPB naming and package names recently changed from DXT; docs and generated files must use current MCPB names while mentioning legacy terms only for migration.
Bundling native binaries can multiply artifact size and platform matrix complexity.
Launcher scripts must preserve stdio JSON-RPC cleanliness.
Manifest user config can leak secrets if defaults are generated incorrectly.
Host support may differ between Claude Desktop and other MCP clients.
Acceptance criteria
Template can generate an MCPB folder with a valid manifest.json for a generated MCP server.
mcpb validate passes for the generated manifest.
mcpb pack or an equivalent automated command produces a .mcpb artifact.
Bundle starts the generated server over stdio without stdout log contamination.
Configurable values are represented in the manifest rather than hardcoded into bundled scripts.
CI validates manifest shape and packability.
Docs explain install/test flow for Claude desktop-compatible hosts and note the DXT-to-MCPB rename.
Release artifacts can include .mcpb output without colliding with npm/crates.io/registry publishing.
Goal
Create an MCPB bundle template so generated local MCP servers can ship as one-click installable
.mcpbbundles for compatible desktop hosts.Current facts
.mcpb) are ZIP archives containing a local MCP server and amanifest.jsonthat describes the server and its capabilities.dxtCLI is nowmcpb..dxtfiles are now.mcpbfiles.@anthropic-ai/dxtis moving to@anthropic-ai/mcpb.mcpb initto createmanifest.json,mcpb validateto validate it, andmcpb packto create the.mcpbarchive.Requirements
manifest.jsonaccording to the MCPB manifest spec.xtask,just, or release tooling.Implementation phases
Define bundle layout.
dist/mcpb/<service>/orpackages/mcpb/.Generate manifest.
manifest.jsonpopulated from scaffold/service metadata.Build and pack.
xtask/justcommands formcpb validateandmcpb pack..mcpbwhen the profile is enabled.Integrate with release/distribution.
Test host compatibility.
mcpb validate.Alignment with related issues
.mcpbartifacts.Local files likely touched
xtask/src/*for bundle generation/validation/pack commandsJustfilerelease/components.toml.github/workflows/*release*docs/*MCPB*or distribution docsmanifest.json, icons, launch scripts, and bundle layoutRisks
Acceptance criteria
manifest.jsonfor a generated MCP server.mcpb validatepasses for the generated manifest.mcpb packor an equivalent automated command produces a.mcpbartifact..mcpboutput without colliding with npm/crates.io/registry publishing.Sources
.mcpb: https://www.anthropic.com/engineering/desktop-extensions