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/codspeed in 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
Description
When attempting to add
CodSpeedHQ/codspeedas a plugin marketplace in the Claude Desktop app (Cowork mode), the operation fails with a generic error:No additional error details are shown to the user.
Steps to Reproduce
+button)CodSpeedHQ/codspeedin the URL fieldRoot Cause Analysis
The plugin entry in
.claude-plugin/marketplace.jsonis missing theauthorfield:{ "name": "codspeed", "source": "./", "description": "Tools for accurate and reliable performance measurement and optimization" }Claude Desktop's
listAvailablePluginsvalidation schema requires theauthorfield 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.jsonalready has theauthorfield, but the marketplace entry itself also needs it for the Desktop app's validation to pass.Suggested Fix
Add the
authorfield 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