WritingAnthropicAnthropicpublished Jun 26, 2025seen 2d

Desktop Extensions

Open original ↗

Captured source

source ↗
published Jun 26, 2025seen 2dcaptured 8hhttp 200method plain

Claude Desktop Extensions: One-click MCP server installation for Claude Desktop \ Anthropic Engineering at Anthropic Desktop Extensions: One-click MCP server installation for Claude Desktop

Published Jun 26, 2025 Desktop Extensions make installing MCP servers as easy as clicking a button. We share the technical architecture and tips for creating good extensions.

File extension update Sep 11, 2025

Claude Desktop Extensions now use the .mcpb (MCP Bundle) file extension instead of .dxt. Existing .dxt extensions will continue to work, but we recommend developers use .mcpb for new extensions going forward. All functionality remains the same - this is purely a naming convention update.

— When we released the Model Context Protocol (MCP) last year, we saw developers build amazing local servers that gave Claude access to everything from file systems to databases. But we kept hearing the same feedback: installation was too complex. Users needed developer tools, had to manually edit configuration files, and often got stuck on dependency issues. Today, we're introducing Desktop Extensions—a new packaging format that makes installing MCP servers as simple as clicking a button. Addressing the MCP installation problem Local MCP servers unlock powerful capabilities for Claude Desktop users. They can interact with local applications, access private data, and integrate with development tools—all while keeping data on the user's machine. However, the current installation process creates significant barriers: Developer tools required : Users need Node.js, Python, or other runtimes installed Manual configuration : Each server requires editing JSON configuration files Dependency management : Users must resolve package conflicts and version mismatches No discovery mechanism : Finding useful MCP servers requires searching GitHub Update complexity : Keeping servers current means manual reinstallation

These friction points meant that MCP servers, despite their power, remained largely inaccessible to non-technical users. Introducing Desktop Extensions Desktop Extensions ( .mcpb files) solve these problems by bundling an entire MCP server—including all dependencies—into a single installable package. Here's what changes for users: Before:

Install Node.js first

npm install -g @example/mcp-server

Edit ~/.claude/claude_desktop_config.json manually

Restart Claude Desktop

Hope it works Copy

After: Download a .mcpb file Double-click to open with Claude Desktop Click "Install"

That's it. No terminal, no configuration files, no dependency conflicts. Architecture overview A Desktop Extension is a zip archive containing the local MCP server as well as a manifest.json , which describes everything Claude Desktop and other apps supporting desktop extensions need to know. extension.mcpb (ZIP archive) ├── manifest.json # Extension metadata and configuration ├── server/ # MCP server implementation │ └── [server files] ├── dependencies/ # All required packages/libraries └── icon.png # Optional: Extension icon

Example: Node.js Extension

extension.mcpb ├── manifest.json # Required: Extension metadata and configuration ├── server/ # Server files │ └── index.js # Main entry point ├── node_modules/ # Bundled dependencies ├── package.json # Optional: NPM package definition └── icon.png # Optional: Extension icon

Example: Python Extension

extension.mcpb (ZIP file) ├── manifest.json # Required: Extension metadata and configuration ├── server/ # Server files │ ├── main.py # Main entry point │ └── utils.py # Additional modules ├── lib/ # Bundled Python packages ├── requirements.txt # Optional: Python dependencies list └── icon.png # Optional: Extension icon Copy

The only required file in a Desktop Extension is a manifest.json. Claude Desktop handles all the complexity: Built-in runtime : We ship Node.js with Claude Desktop, eliminating external dependencies Automatic updates : Extensions update automatically when new versions are available Secure secrets : Sensitive configuration like API keys are stored in the OS keychain

The manifest contains human-readable information (like the name, description, or author), a declaration of features (tools, prompts), user configuration, and runtime requirements. Most fields are optional, so the minimal version is quite short, although in practice, we expect all three supported extension types (Node.js, Python, and classic binaries/executables) to include files: { "mcpb_version": "0.1", // MCPB spec version this manifest conforms to "name": "my-extension", // Machine-readable name (used for CLI, APIs) "version": "1.0.0", // Semantic version of your extension "description": "A simple MCP extension", // Brief description of what the extension does "author": { // Author information (required) "name": "Extension Author" // Author's name (required field) }, "server": { // Server configuration (required) "type": "node", // Server type: "node", "python", or "binary" "entry_point": "server/index.js", // Path to the main server file "mcp_config": { // MCP server configuration "command": "node", // Command to run the server "args": [ // Arguments passed to the command "${__dirname}/server/index.js" // ${__dirname} is replaced with the extension's directory ] } } } Copy

There are a number of convenience options available in the manifest spec that aim to make the installation and configuration of local MCP servers easier. The server configuration object can be defined in a way that makes room both for user-defined configuration in the form of template literals as well as platform-specific overrides. Extension developers can define, in detail, what kind of configuration they want to collect from users. Let’s take a look at a concrete example of how the manifest aids with configuration. In the manifest below, the developer declares that the user needs to supply an api_key . Claude will not enable the extension until the user has supplied that value, keep it automatically in the operating system’s secret vault, and transparently replace the ${user_config.api_key} with the user-supplied value when launching the server. Similarly, ${__dirname} will be replaced with the full path to the extension’s unpacked directory. { "mcpb_version": "0.1", "name": "my-extension", "version": "1.0.0", "description": "A simple MCP extension", "author": { "name": "Extension Author" }, "server": { "type": "node", "entry_point": "server/index.js", "mcp_config": { "command":…

Excerpt shown — open the source for the full document.