From be1e9572193349c5e1159f3c44e2aec6ff11b04e Mon Sep 17 00:00:00 2001 From: Kieran Klaassen Date: Mon, 24 Nov 2025 14:29:24 -0800 Subject: [PATCH] [2.4.0] Fix MCP configuration - use plugin.json not .mcp.json --- .../.claude-plugin/plugin.json | 16 ++++++++++++++-- plugins/compounding-engineering/.mcp.json | 12 ------------ plugins/compounding-engineering/CHANGELOG.md | 7 +++++++ 3 files changed, 21 insertions(+), 14 deletions(-) delete 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 8603029..77eefaf 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.3.0", + "version": "2.4.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,5 +23,17 @@ "image-generation", "playwright", "browser-automation" - ] + ], + "mcpServers": { + "playwright": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@playwright/mcp@latest"], + "env": {} + }, + "context7": { + "type": "http", + "url": "https://mcp.context7.com/mcp" + } + } } diff --git a/plugins/compounding-engineering/.mcp.json b/plugins/compounding-engineering/.mcp.json deleted file mode 100644 index 63a585d..0000000 --- a/plugins/compounding-engineering/.mcp.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "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 bb619a5..f525e0f 100644 --- a/plugins/compounding-engineering/CHANGELOG.md +++ b/plugins/compounding-engineering/CHANGELOG.md @@ -5,6 +5,13 @@ 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.4.0] - 2024-11-24 + +### Fixed + +- **MCP Configuration** - Moved MCP servers back to `plugin.json` following working examples from anthropics/life-sciences plugins. Removed `.mcp.json` file as it's not the correct approach. +- **Context7 URL** - Updated to use HTTP type with correct endpoint URL. + ## [2.3.0] - 2024-11-24 ### Changed