Skip to content

[BUG] "Failed to add marketplace" in Claude Desktop (Cowork) — missing author field in marketplace plugin entry #282

@hckhanh

Description

@hckhanh

Description

When attempting to add CodSpeedHQ/codspeed as a plugin marketplace in the Claude Desktop app (Cowork mode), the operation fails with a generic error:

Failed to add marketplace.

No additional error details are shown to the user.

Steps to Reproduce

  1. Open Claude Desktop app (Cowork mode)
  2. Go to Directory → Plugins
  3. Click "Add marketplace" (the + button)
  4. Enter CodSpeedHQ/codspeed in the URL field
  5. Click Sync
  6. Error appears: "Failed to add marketplace."

Root Cause Analysis

The plugin entry in .claude-plugin/marketplace.json is missing the author field:

{
  "name": "codspeed",
  "source": "./",
  "description": "Tools for accurate and reliable performance measurement and optimization"
}

Claude Desktop's listAvailablePlugins validation schema requires the author field on plugin entries, even though the Claude Code CLI does not enforce this. This is a known issue affecting many third-party plugins (see anthropics/claude-code#33068).

Note: the plugin.json already has the author field, but the marketplace entry itself also needs it for the Desktop app's validation to pass.

Suggested Fix

Add the author field to the plugin entry in .claude-plugin/marketplace.json:

{
  "name": "codspeed-plugin-marketplace",
  "owner": {
    "name": "CodSpeed"
  },
  "plugins": [
    {
      "name": "codspeed",
      "source": "./",
      "description": "Tools for accurate and reliable performance measurement and optimization",
      "author": {
        "name": "CodSpeed"
      }
    }
  ]
}

Environment

  • App: Claude Desktop (Cowork mode), macOS
  • Date: 2026-04-01

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions