fix(plugin): load the bundled MCP server + admin-configurable marketplace URL #63
Reference in New Issue
Block a user
Delete Branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Two changes since the last main merge:
/reload-pluginsreported "0 plugin MCP servers". Root cause (two compounding issues): plugin.json used"mcpServers": "./.mcp.json"(a string path, not a valid inline object/reference), AND.mcp.jsonis gitignored so it was never in the marketplace clone. Fixed by inlining themcpServersobject (with${user_config.*}substitution) directly into the trackedplugin.json; bumped plugin to 0.1.1 so clients re-fetch.Admin → Plugin marketplacesetting, surfaced in every user's MCP Access install command so it's copyable.No migrations.
🤖 Generated with Claude Code
/reload-plugins reported '0 plugin MCP servers'. Root cause: plugin.json had "mcpServers": "./.mcp.json" — a string path, which is neither a valid inline object nor a recognized reference (per docs, plugin MCP servers are a root .mcp.json OR an inline object in plugin.json), so it parsed to zero servers. Inline the mcpServers object directly in plugin.json and remove the separate .mcp.json. The user_config substitution syntax was already correct (plugins-reference: values substitute as ${user_config.KEY} in MCP configs). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>