Skip to content

Add Claude Code marketplace install support (.claude-plugin)#69

Draft
Copilot wants to merge 2 commits into
mainfrom
copilot/add-claude-plugin-install-support
Draft

Add Claude Code marketplace install support (.claude-plugin)#69
Copilot wants to merge 2 commits into
mainfrom
copilot/add-claude-plugin-install-support

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Mar 8, 2026

Users currently must manually edit ~/.claude.json to configure the MCP server. This adds the .claude-plugin/ directory to enable one-command installation via the Claude Code plugin marketplace.

Changes

  • .claude-plugin/plugin.json — MCP server config consumed at install time; wires up npx -y server-shannon-thinking@latest
  • .claude-plugin/marketplace.json — marketplace discovery metadata (name, owner, description, version)

Once merged, users can install via:

/plugin marketplace add olaservo/shannon-thinking
/plugin install shannon-thinking
Original prompt

This section details on the original issue you should resolve

<issue_title>Add Claude Code marketplace install support (.claude-plugin)</issue_title>
<issue_description>## Feature Request

It would be great to support one-command installation via the Claude Code plugin marketplace:

/plugin marketplace add olaservo/shannon-thinking
/plugin install shannon-thinking

Right now users have to manually edit ~/.claude.json to add the MCP server config.

What's needed

Add a .claude-plugin/ directory with two files:

.claude-plugin/plugin.json

{
  "name": "shannon-thinking",
  "version": "1.0.0",
  "description": "Shannon-inspired structured thinking MCP server",
  "author": {
    "name": "olaservo"
  },
  "mcpServers": {
    "shannon-thinking": {
      "command": "npx",
      "args": ["-y", "server-shannon-thinking@latest"]
    }
  }
}

.claude-plugin/marketplace.json

{
  "name": "shannon-thinking",
  "owner": {
    "name": "olaservo"
  },
  "metadata": {
    "description": "Shannon-inspired structured thinking MCP server for Claude Code",
    "version": "1.0.0"
  },
  "plugins": [
    {
      "name": "shannon-thinking",
      "description": "Structured thinking tool using Shannon's information-theoretic approach",
      "source": "./"
    }
  ]
}

</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: olaservo <16480113+olaservo@users.noreply.github.com>
Copilot AI changed the title [WIP] Add Claude Code marketplace install support Add Claude Code marketplace install support (.claude-plugin) Mar 8, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add Claude Code marketplace install support (.claude-plugin)

2 participants