-
Notifications
You must be signed in to change notification settings - Fork 17
[BUG] "Failed to add marketplace" in Claude Desktop (Cowork) — missing author field in marketplace plugin entry #282
Description
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
- Open Claude Desktop app (Cowork mode)
- Go to Directory → Plugins
- Click "Add marketplace" (the
+button) - Enter
CodSpeedHQ/codspeedin the URL field - Click Sync
- 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