🔧 Bug Fixes
MCP Server Configuration Format Correction
This release fixes the MCP server configuration format to use the correct structure:
Before (0.4.1):
{
"command": ["npx", "-y", "perplexity-mcp"],
"args": null,
"env": null
}After (0.4.2):
{
"command": "npx",
"args": ["-y", "perplexity-mcp"],
"env": {}
}Key Changes
- ✅
commandis now a string (not an array) - ✅
argsis always an array (never null) - ✅
envis always an object (never null) - ✅ Automatic migration for existing configurations
- ✅ Backward compatibility maintained
Migration
Existing configurations will be automatically migrated when you run mcp-sync commands. No manual intervention required!
Testing
All 134 tests pass, ensuring the changes work correctly across all functionality.
Full Changelog: v0.4.1...v0.4.2