@habitusnet/bc365 2.2.7 → 2.2.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.
- package/CHANGELOG.md +5 -0
- package/lib/onboard.js +1 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.2.8] — 2026-02-20
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- `bc-data` MCP server now references `@knowall-ai/mcp-business-central` (the published npm package) instead of `@habitusnet/mcp-business-central` which was a GitHub-only mirror and caused a 404 on every Claude Desktop startup
|
|
9
|
+
|
|
5
10
|
## [2.2.7] — 2026-02-20
|
|
6
11
|
|
|
7
12
|
### Added
|
package/lib/onboard.js
CHANGED
|
@@ -30,7 +30,7 @@ export function buildMcpConfig(ctx) {
|
|
|
30
30
|
'bc-data': {
|
|
31
31
|
type: 'stdio',
|
|
32
32
|
command: 'npx',
|
|
33
|
-
args: ['-y', '@
|
|
33
|
+
args: ['-y', '@knowall-ai/mcp-business-central'],
|
|
34
34
|
env: {
|
|
35
35
|
BC_URL_SERVER: `${BC_API_BASE}/${tenantId}/${envName}/api/v2.0`,
|
|
36
36
|
BC_COMPANY: companyId,
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@habitusnet/bc365",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.8",
|
|
4
4
|
"description": "Smart onboarding CLI and MCP config manager for Business Central",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"bc365": "
|
|
7
|
+
"bc365": "bin/bc365.js"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
10
|
".": "./lib/index.js"
|
|
@@ -19,9 +19,11 @@
|
|
|
19
19
|
],
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/habitusnet/mcp-d365-BC"
|
|
22
|
+
"url": "git+https://github.com/habitusnet/mcp-d365-BC.git"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20"
|
|
23
26
|
},
|
|
24
|
-
"engines": { "node": ">=20" },
|
|
25
27
|
"scripts": {
|
|
26
28
|
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
|
|
27
29
|
"lint": "eslint lib/ bin/"
|