opencode-azure-setup 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -432,8 +432,7 @@ async function main() {
432
432
  config.mcp = config.mcp || {};
433
433
  config.mcp['mcp-marketplace'] = {
434
434
  type: 'local',
435
- command: 'node',
436
- args: [mcpPath],
435
+ command: ['node', mcpPath],
437
436
  };
438
437
 
439
438
  console.log(colors.green + '✓ MCP Marketplace installed!' + colors.reset);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-azure-setup",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Easy Azure OpenAI setup for OpenCode",
5
5
  "type": "module",
6
6
  "main": "index.js",