From 187aaa2db1aa194e6c50753f6e823cafb460ca16 Mon Sep 17 00:00:00 2001 From: Leon van Zyl Date: Fri, 7 Nov 2025 07:12:46 +0200 Subject: [PATCH] chore: add cross-platform MCP server configurations and bump version to 1.1.11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit enhances the Model Context Protocol (MCP) server configuration for improved cross-platform compatibility and adds additional MCP servers. Key changes: - Added separate MCP server configurations for Unix and Windows platforms - shadcn-unix and shadcn-windows variants for proper command execution - playwright-unix and playwright-windows variants for browser automation - Integrated Context7 MCP server with API key authentication - Updated package version from 1.1.10 to 1.1.11 - Applied configuration updates to both root .mcp.json and template Technical details: - Windows configurations use 'cmd /c' wrapper to properly execute npx commands - Unix configurations use direct 'npx' command execution - Context7 server uses HTTPS URL endpoint with header-based authentication - Changes apply to both the main project and create-agentic-app template Breaking changes: None Migration notes: Users will need to set their CONTEXT7_API_KEY if using Context7 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .mcp.json | 22 +++++++++++++++++++++- create-agentic-app/package-lock.json | 4 ++-- create-agentic-app/package.json | 2 +- create-agentic-app/template/.mcp.json | 22 +++++++++++++++++++++- 4 files changed, 45 insertions(+), 5 deletions(-) diff --git a/.mcp.json b/.mcp.json index 9d30c31..f5e1bda 100644 --- a/.mcp.json +++ b/.mcp.json @@ -1,8 +1,28 @@ { "mcpServers": { - "shadcn": { + "shadcn-unix": { "command": "npx", "args": ["shadcn@latest", "mcp"] + }, + "shadcn-windows": { + "command": "cmd", + "args": ["/c", "npx", "shadcn@latest", "mcp"] + }, + "playwright-unix": { + "command": "npx", + "args": [ + "@playwright/mcp@latest" + ] + }, + "playwright-windows": { + "command": "cmd", + "args": ["/c", "npx", "@playwright/mcp@latest"] + }, + "context7": { + "url": "https://mcp.context7.com/mcp", + "headers": { + "CONTEXT7_API_KEY": "YOUR_API_KEY" + } } } } diff --git a/create-agentic-app/package-lock.json b/create-agentic-app/package-lock.json index 286b30a..a83980d 100644 --- a/create-agentic-app/package-lock.json +++ b/create-agentic-app/package-lock.json @@ -1,12 +1,12 @@ { "name": "create-agentic-app", - "version": "1.1.10", + "version": "1.1.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "create-agentic-app", - "version": "1.1.10", + "version": "1.1.11", "license": "MIT", "dependencies": { "chalk": "^5.3.0", diff --git a/create-agentic-app/package.json b/create-agentic-app/package.json index ce72096..d85fd55 100644 --- a/create-agentic-app/package.json +++ b/create-agentic-app/package.json @@ -1,6 +1,6 @@ { "name": "create-agentic-app", - "version": "1.1.10", + "version": "1.1.11", "description": "Scaffold a new agentic AI application with Next.js, Better Auth, and AI SDK", "type": "module", "bin": { diff --git a/create-agentic-app/template/.mcp.json b/create-agentic-app/template/.mcp.json index 9d30c31..f5e1bda 100644 --- a/create-agentic-app/template/.mcp.json +++ b/create-agentic-app/template/.mcp.json @@ -1,8 +1,28 @@ { "mcpServers": { - "shadcn": { + "shadcn-unix": { "command": "npx", "args": ["shadcn@latest", "mcp"] + }, + "shadcn-windows": { + "command": "cmd", + "args": ["/c", "npx", "shadcn@latest", "mcp"] + }, + "playwright-unix": { + "command": "npx", + "args": [ + "@playwright/mcp@latest" + ] + }, + "playwright-windows": { + "command": "cmd", + "args": ["/c", "npx", "@playwright/mcp@latest"] + }, + "context7": { + "url": "https://mcp.context7.com/mcp", + "headers": { + "CONTEXT7_API_KEY": "YOUR_API_KEY" + } } } }