@nabsolutions/nab-al-tools-mcp 1.45.512231621 → 1.45.601081659

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 (3) hide show
  1. package/README.md +57 -9
  2. package/package.json +1 -1
  3. package/server.js +3 -3
package/README.md CHANGED
@@ -16,19 +16,34 @@ The NAB AL Tools MCP Server exposes XLIFF translation management functionality t
16
16
 
17
17
  ## Features
18
18
 
19
- 🌐 **Complete XLIFF Workflow** - Sync generated XLF files and manage translation states
20
- 🔍 **Advanced Search** - Find translations by keyword, regex, or translation state
21
- 📚 **Context-Aware** - Detailed object/property context for accurate translations
22
- 🎯 **Terminology Support** - Built-in Business Central glossary for consistent translations
23
- ⚡ **Batch Operations** - Efficient bulk translation updates
19
+ 🌐 **Complete XLIFF Workflow** - Sync generated XLF files and manage translation states
20
+ 🔍 **Advanced Search** - Find translations by keyword, regex, or translation state
21
+ 📚 **Context-Aware** - Detailed object/property context for accurate translations
22
+ 🎯 **Terminology Support** - Built-in Business Central glossary for consistent translations
23
+ ⚡ **Batch Operations** - Efficient bulk translation updates
24
24
  🛡️ **Type Safety** - Full input validation with detailed error handling
25
25
 
26
26
  ## Installation
27
27
 
28
+ ### Release Channels
29
+
30
+ The MCP server is published with two npm tags:
31
+
32
+ - **`latest`** (default): Stable releases that align with VS Code extension releases
33
+ - **`next`**: Pre-release versions for early access to new features
34
+
28
35
  ### Option 1: Use with npx (Recommended)
29
36
 
30
37
  No manual installation required! MCP clients can run the server directly using npx, which automatically downloads and runs the latest version.
31
38
 
39
+ ```bash
40
+ # Stable release (default)
41
+ npx -y @nabsolutions/nab-al-tools-mcp
42
+
43
+ # Pre-release version
44
+ npx -y @nabsolutions/nab-al-tools-mcp@next
45
+ ```
46
+
32
47
  ### Option 2: Manual Installation
33
48
 
34
49
  Install manually if you:
@@ -39,18 +54,24 @@ Install manually if you:
39
54
  - Are using the server frequently
40
55
 
41
56
  ```bash
42
- # Global installation
57
+ # Global installation - stable release
43
58
  npm install -g @nabsolutions/nab-al-tools-mcp
44
59
 
45
- # Local installation (in your project)
60
+ # Global installation - pre-release
61
+ npm install -g @nabsolutions/nab-al-tools-mcp@next
62
+
63
+ # Local installation - stable release
46
64
  npm install @nabsolutions/nab-al-tools-mcp
65
+
66
+ # Local installation - pre-release
67
+ npm install @nabsolutions/nab-al-tools-mcp@next
47
68
  ```
48
69
 
49
70
  ## Quick Start
50
71
 
51
72
  ### GitHub Copilot Coding Agent Configuration
52
73
 
53
- For GitHub Copilot Coding agent, add to your MCP settings:
74
+ **Using stable release (recommended):**
54
75
 
55
76
  ```json
56
77
  {
@@ -64,9 +85,23 @@ For GitHub Copilot Coding agent, add to your MCP settings:
64
85
  }
65
86
  ```
66
87
 
88
+ **Using pre-release:**
89
+
90
+ ```json
91
+ {
92
+ "mcpServers": {
93
+ "nab-al-tools": {
94
+ "type": "local",
95
+ "command": "npx",
96
+ "args": ["-y", "@nabsolutions/nab-al-tools-mcp@next"]
97
+ }
98
+ }
99
+ }
100
+ ```
101
+
67
102
  ### Claude Desktop Configuration
68
103
 
69
- **Option 1: Using npx (no installation required)**
104
+ **Using npx with stable release (recommended):**
70
105
 
71
106
  Add the server to your Claude Desktop configuration (`~/.claude/claude_desktop_config.json`):
72
107
 
@@ -81,6 +116,19 @@ Add the server to your Claude Desktop configuration (`~/.claude/claude_desktop_c
81
116
  }
82
117
  ```
83
118
 
119
+ **Using npx with pre-release:**
120
+
121
+ ```json
122
+ {
123
+ "mcpServers": {
124
+ "nab-al-tools": {
125
+ "command": "npx",
126
+ "args": ["-y", "@nabsolutions/nab-al-tools-mcp@next"]
127
+ }
128
+ }
129
+ }
130
+ ```
131
+
84
132
  **Option 2: Using globally installed package**
85
133
 
86
134
  ```json
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nabsolutions/nab-al-tools-mcp",
3
3
  "description": "NAB AL Tools MCP Server - Model Context Protocol server for AL development and translation management in Microsoft Dynamics 365 Business Central.",
4
- "version": "1.45.512231621",
4
+ "version": "1.45.601081659",
5
5
  "publisher": "nabsolutions",
6
6
  "main": "server.js",
7
7
  "bin": {