@vjeko.com/al-object-id-ninja-mcp 1.0.0 → 1.0.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 +15 -32
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# AL Object ID Ninja MCP Server
|
|
2
2
|
|
|
3
|
-
MCP (Model Context Protocol) server for [AL Object ID Ninja](https://marketplace.visualstudio.com/items?itemName=vjeko.vjeko-al-objid) -
|
|
3
|
+
MCP (Model Context Protocol) server for [AL Object ID Ninja](https://marketplace.visualstudio.com/items?itemName=vjeko.vjeko-al-objid) - managing AL object IDs in Business Central development.
|
|
4
|
+
|
|
5
|
+
## Do You Need This?
|
|
6
|
+
|
|
7
|
+
**Visual Studio Code users: No.** The [AL Object ID Ninja extension](https://marketplace.visualstudio.com/items?itemName=vjeko.vjeko-al-objid) already includes Language Model Tools integration. GitHub Copilot and other AI assistants in VS Code can automatically assign and manage object IDs without any additional setup.
|
|
8
|
+
|
|
9
|
+
**Cursor, Claude Code, or other AI tools: Yes.** Install this MCP server to enable AI-assisted object ID management outside of VS Code.
|
|
4
10
|
|
|
5
11
|
## Features
|
|
6
12
|
|
|
@@ -11,37 +17,21 @@ This MCP server provides two tools for AI assistants:
|
|
|
11
17
|
|
|
12
18
|
## Installation
|
|
13
19
|
|
|
14
|
-
###
|
|
20
|
+
### Claude Code
|
|
15
21
|
|
|
16
|
-
|
|
22
|
+
**Global** (available in all projects):
|
|
17
23
|
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
"servers": {
|
|
21
|
-
"al-object-id-ninja": {
|
|
22
|
-
"command": "npx",
|
|
23
|
-
"args": ["-y", "@vjeko.com/al-object-id-ninja-mcp"]
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
24
|
+
```bash
|
|
25
|
+
claude mcp add --scope user --transport stdio al-object-id-ninja -- npx -y @vjeko.com/al-object-id-ninja-mcp
|
|
27
26
|
```
|
|
28
27
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
Add to `~/.claude/mcp.json` (global) or `.claude/mcp.json` in your project:
|
|
28
|
+
**Local** (current project only):
|
|
32
29
|
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
"mcpServers": {
|
|
36
|
-
"al-object-id-ninja": {
|
|
37
|
-
"command": "npx",
|
|
38
|
-
"args": ["-y", "@vjeko.com/al-object-id-ninja-mcp"]
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
30
|
+
```bash
|
|
31
|
+
claude mcp add --scope local --transport stdio al-object-id-ninja -- npx -y @vjeko.com/al-object-id-ninja-mcp
|
|
42
32
|
```
|
|
43
33
|
|
|
44
|
-
Then restart Claude Code or run `/mcp` to
|
|
34
|
+
Then restart Claude Code or run `/mcp` to verify the server is available.
|
|
45
35
|
|
|
46
36
|
### Cursor
|
|
47
37
|
|
|
@@ -58,13 +48,6 @@ Add to `~/.cursor/mcp.json`:
|
|
|
58
48
|
}
|
|
59
49
|
```
|
|
60
50
|
|
|
61
|
-
## Prerequisites
|
|
62
|
-
|
|
63
|
-
Your AL app must be set up with AL Object ID Ninja:
|
|
64
|
-
|
|
65
|
-
1. Have a valid `app.json` with `idRanges` configured
|
|
66
|
-
2. Have a `.objidconfig` file with `authKey` (created when you authorize with Ninja)
|
|
67
|
-
|
|
68
51
|
## Usage
|
|
69
52
|
|
|
70
53
|
Once configured, AI assistants can use the tools to manage object IDs:
|
package/package.json
CHANGED