From 66e35bbc40780c95f2ce2d1580f9c12754cda64f Mon Sep 17 00:00:00 2001 From: Kieran Klaassen Date: Mon, 24 Nov 2025 14:17:56 -0800 Subject: [PATCH] [2.3.0] Move MCP servers to .mcp.json file --- .../.claude-plugin/plugin.json | 16 ++-------------- plugins/compounding-engineering/.mcp.json | 14 ++++++++++++++ plugins/compounding-engineering/CHANGELOG.md | 6 ++++++ 3 files changed, 22 insertions(+), 14 deletions(-) create mode 100644 plugins/compounding-engineering/.mcp.json diff --git a/plugins/compounding-engineering/.claude-plugin/plugin.json b/plugins/compounding-engineering/.claude-plugin/plugin.json index 53b568a..8603029 100644 --- a/plugins/compounding-engineering/.claude-plugin/plugin.json +++ b/plugins/compounding-engineering/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "compounding-engineering", - "version": "2.2.1", + "version": "2.3.0", "description": "AI-powered development tools. 24 agents, 15 commands, 11 skills, 2 MCP servers for code review, research, design, and workflow automation.", "author": { "name": "Kieran Klaassen", @@ -23,17 +23,5 @@ "image-generation", "playwright", "browser-automation" - ], - "mcpServers": { - "playwright": { - "type": "stdio", - "command": "npx", - "args": ["-y", "@playwright/mcp@latest"], - "env": {} - }, - "context7": { - "type": "sse", - "url": "https://mcp.context7.com/sse" - } - } + ] } diff --git a/plugins/compounding-engineering/.mcp.json b/plugins/compounding-engineering/.mcp.json new file mode 100644 index 0000000..8e1718b --- /dev/null +++ b/plugins/compounding-engineering/.mcp.json @@ -0,0 +1,14 @@ +{ + "mcpServers": { + "playwright": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@playwright/mcp@latest"], + "env": {} + }, + "context7": { + "type": "sse", + "url": "https://mcp.context7.com/sse" + } + } +} \ No newline at end of file diff --git a/plugins/compounding-engineering/CHANGELOG.md b/plugins/compounding-engineering/CHANGELOG.md index 3edabed..bb619a5 100644 --- a/plugins/compounding-engineering/CHANGELOG.md +++ b/plugins/compounding-engineering/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to the compounding-engineering plugin will be documented in The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.3.0] - 2024-11-24 + +### Changed + +- **MCP Configuration** - Moved MCP servers from inline `plugin.json` to separate `.mcp.json` file per Claude Code best practices for plugin MCP integration. + ## [2.2.1] - 2024-11-24 ### Fixed