@siemens/ix-mcp-angular 4.3.0-v.1.11.0 → 4.3.0-v.1.11.1

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.
package/README.md CHANGED
@@ -301,6 +301,42 @@ If you prefer to set up the configurations manually, here are the required files
301
301
  }
302
302
  ```
303
303
 
304
+ ### OpenCode (Local or Global)
305
+
306
+ For repository-level configuration, create `opencode.json` in your project root:
307
+
308
+ ```json
309
+ {
310
+ "$schema": "https://opencode.ai/config.json",
311
+ "mcp": {
312
+ "ix-mcp-angular": {
313
+ "type": "local",
314
+ "command": ["npx", "-y", "@siemens/ix-mcp-angular"],
315
+ "enabled": true
316
+ }
317
+ },
318
+ "instructions": ["iX.instructions.md"]
319
+ }
320
+ ```
321
+
322
+ For global configuration, edit `~/.config/opencode/opencode.json`:
323
+
324
+ ```json
325
+ {
326
+ "$schema": "https://opencode.ai/config.json",
327
+ "mcp": {
328
+ "ix-mcp-angular": {
329
+ "type": "local",
330
+ "command": ["npx", "-y", "@siemens/ix-mcp-angular"],
331
+ "enabled": true
332
+ }
333
+ }
334
+ }
335
+ ```
336
+
337
+ Learn more about OpenCode configuration at
338
+ [https://opencode.ai/docs/config](https://opencode.ai/docs/config).
339
+
304
340
  ### Claude Code (Global Claude Code MCP settings)
305
341
 
306
342
  ```json
@@ -356,42 +392,6 @@ alternative. See the OpenCode docs for setup.
356
392
  }
357
393
  ```
358
394
 
359
- ### OpenCode (Local or Global)
360
-
361
- For repository-level configuration, create `opencode.json` in your project root:
362
-
363
- ```json
364
- {
365
- "$schema": "https://opencode.ai/config.json",
366
- "mcp": {
367
- "ix-mcp-angular": {
368
- "type": "local",
369
- "command": ["npx", "-y", "@siemens/ix-mcp-angular"],
370
- "enabled": true
371
- }
372
- },
373
- "instructions": ["iX.instructions.md"]
374
- }
375
- ```
376
-
377
- For global configuration, edit `~/.config/opencode/opencode.json`:
378
-
379
- ```json
380
- {
381
- "$schema": "https://opencode.ai/config.json",
382
- "mcp": {
383
- "ix-mcp-angular": {
384
- "type": "local",
385
- "command": ["npx", "-y", "@siemens/ix-mcp-angular"],
386
- "enabled": true
387
- }
388
- }
389
- }
390
- ```
391
-
392
- Learn more about OpenCode configuration at
393
- [https://opencode.ai/docs/config](https://opencode.ai/docs/config).
394
-
395
395
  ## License
396
396
 
397
397
  The following applies for code and documentation of the git repository, unless explicitly mentioned.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siemens/ix-mcp-angular",
3
- "version": "4.3.0-v.1.11.0",
3
+ "version": "4.3.0-v.1.11.1",
4
4
  "description": "iX MCP server for Angular",
5
5
  "license": "MIT",
6
6
  "main": "dist/src/index.js",