opencode-azure-setup 1.0.6 → 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 +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -431,8 +431,8 @@ async function main() {
431
431
  // Add to config
432
432
  config.mcp = config.mcp || {};
433
433
  config.mcp['mcp-marketplace'] = {
434
- command: 'node',
435
- args: [mcpPath],
434
+ type: 'local',
435
+ command: ['node', mcpPath],
436
436
  };
437
437
 
438
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.6",
3
+ "version": "1.0.8",
4
4
  "description": "Easy Azure OpenAI setup for OpenCode",
5
5
  "type": "module",
6
6
  "main": "index.js",