Skip to content

v0.4.2 - MCP Config Format Fix

Latest

Choose a tag to compare

@ztripez ztripez released this 20 Jun 08:05

🔧 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

  • command is now a string (not an array)
  • args is always an array (never null)
  • env is 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