From e3e7640c64777669d074ee17c143e505e23cbc94 Mon Sep 17 00:00:00 2001 From: Kieran Klaassen Date: Mon, 24 Nov 2025 14:08:59 -0800 Subject: [PATCH] [2.2.1] Fix Playwright MCP - add missing type field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add required "type": "stdio" to playwright MCP server config - MCP servers require explicit type declaration to load properly 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- plugins/compounding-engineering/.claude-plugin/plugin.json | 3 ++- plugins/compounding-engineering/CHANGELOG.md | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/plugins/compounding-engineering/.claude-plugin/plugin.json b/plugins/compounding-engineering/.claude-plugin/plugin.json index 237b855..53b568a 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.0", + "version": "2.2.1", "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", @@ -26,6 +26,7 @@ ], "mcpServers": { "playwright": { + "type": "stdio", "command": "npx", "args": ["-y", "@playwright/mcp@latest"], "env": {} diff --git a/plugins/compounding-engineering/CHANGELOG.md b/plugins/compounding-engineering/CHANGELOG.md index f1d0b9e..3edabed 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.2.1] - 2024-11-24 + +### Fixed + +- **Playwright MCP Server** - Added missing `"type": "stdio"` field required for MCP server configuration to load properly. + ## [2.2.0] - 2024-11-24 ### Added