[2.4.0] Fix MCP configuration - use plugin.json not .mcp.json

This commit is contained in:
Kieran Klaassen
2025-11-24 14:29:24 -08:00
parent bf00391d42
commit be1e957219
3 changed files with 21 additions and 14 deletions

View File

@@ -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"
}
}
}

View File

@@ -1,12 +0,0 @@
{
"playwright": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@playwright/mcp@latest"],
"env": {}
},
"context7": {
"type": "sse",
"url": "https://mcp.context7.com/sse"
}
}

View File

@@ -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